PLC application sources (NVL, rooms, boiler), HA/Node-RED integration guide, and NVL patch utilities. Co-authored-by: Cursor <cursoragent@cursor.com>
16 lines
209 B
Smalltalk
16 lines
209 B
Smalltalk
(* === DECLARATION === *)
|
|
TYPE struct_switches :
|
|
STRUCT
|
|
all_off:BOOL;
|
|
all_on:BOOL;
|
|
sw_1:BOOL;
|
|
sw_2:BOOL;
|
|
sw_3:BOOL;
|
|
sw_4:BOOL;
|
|
sw_5:BOOL;
|
|
sw_6:BOOL;
|
|
END_STRUCT
|
|
END_TYPE
|
|
|
|
(* === IMPLEMENTATION === *)
|