PLC application sources (NVL, rooms, boiler), HA/Node-RED integration guide, and NVL patch utilities. Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
437 B
Smalltalk
23 lines
437 B
Smalltalk
(* === DECLARATION === *)
|
|
PROGRAM Lights
|
|
VAR
|
|
masterBedroom : fb_switch;
|
|
masterBathroom: fb_switch;
|
|
bedroom_1: fb_switch;
|
|
bedroom_2: fb_switch;
|
|
bathroom: fb_switch;
|
|
guest_wc: fb_switch;
|
|
kitchen: fb_switch;
|
|
pantry: fb_switch;
|
|
livingRoom: fb_switch;
|
|
diningRoom: fb_switch;
|
|
veranda: fb_switch;
|
|
entrance: fb_switch;
|
|
front: fb_switch;
|
|
back: fb_switch;
|
|
side: fb_switch;
|
|
hallway: fb_switch;
|
|
END_VAR
|
|
|
|
(* === IMPLEMENTATION === *)
|