PLC application sources (NVL, rooms, boiler), HA/Node-RED integration guide, and NVL patch utilities. Co-authored-by: Cursor <cursoragent@cursor.com>
24 lines
677 B
Smalltalk
24 lines
677 B
Smalltalk
(* === DECLARATION === *)
|
|
TYPE struct_zones :
|
|
STRUCT
|
|
masterBedroom: struct_room_outs;
|
|
masterBathroom: struct_room_outs;
|
|
bedroom_1: struct_room_outs;
|
|
bedroom_2: struct_room_outs;
|
|
bathroom: struct_room_outs;
|
|
guest_wc: struct_room_outs;
|
|
kitchen: struct_room_outs;
|
|
pantry: struct_room_outs;
|
|
livingRoom: struct_room_outs;
|
|
diningRoom: struct_room_outs;
|
|
entrance: struct_room_outs;
|
|
hallway: struct_room_outs;
|
|
veranda: struct_room_outs;
|
|
front: struct_room_outs;
|
|
back: struct_room_outs;
|
|
side: struct_room_outs;
|
|
END_STRUCT
|
|
END_TYPE
|
|
|
|
(* === IMPLEMENTATION === *)
|