PLC application sources (NVL, rooms, boiler), HA/Node-RED integration guide, and NVL patch utilities. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
805 B
Smalltalk
27 lines
805 B
Smalltalk
(* === DECLARATION === *)
|
|
//This gobal variable list is received via the network.
|
|
//Protocol: UDP
|
|
//Layout matches Node-RED nvl-send (no legacy struct_switches — removed on PLC)
|
|
|
|
{attribute 'qualified_only'}
|
|
VAR_GLOBAL
|
|
cmd_livingRoom : struct_room_cmds;
|
|
cmd_dinningRoom : struct_room_cmds;
|
|
cmd_kitchenArea : struct_room_cmds;
|
|
cmd_hallway : struct_room_cmds;
|
|
cmd_office : struct_room_cmds;
|
|
cmd_bedroom : struct_room_cmds;
|
|
cmd_masterBedroom : struct_room_cmds;
|
|
cmd_masterBath : struct_room_cmds;
|
|
cmd_shower : struct_room_cmds;
|
|
cmd_guestWc : struct_room_cmds;
|
|
cmd_outFront : struct_room_cmds;
|
|
cmd_coveredVeranda : struct_room_cmds;
|
|
cmd_outYard : struct_room_cmds;
|
|
cmd_outBack : struct_room_cmds;
|
|
boiler_cmd : struct_boiler_cmd;
|
|
|
|
END_VAR
|
|
|
|
(* === IMPLEMENTATION === *)
|