more heating stuff
This commit is contained in:
22
src/main.ts
22
src/main.ts
@ -146,6 +146,11 @@ windowContactDiningRoom2.start()
|
||||
allLabeledItems.push(windowContactDiningRoom2)
|
||||
allWindows.push(windowContactDiningRoom2)
|
||||
|
||||
let thermostatDiningRoom = new MaxThermostat('Gnd', 'DiningRoom', 'Thermostat', 'Thermostat Esszimmer', 31, [windowContactDiningRoom1, windowContactDiningRoom2])
|
||||
thermostatDiningRoom.start()
|
||||
thermostatDiningRoom.setPresetTemperature(21.0)
|
||||
allLabeledItems.push(thermostatDiningRoom)
|
||||
allThermostatItems.push(thermostatDiningRoom)
|
||||
|
||||
// Wohnzimmer -----------------------------------------------------------------------------------------------
|
||||
// Wohnzimmer grosse Lampe 65557 24 1 65556 24 1
|
||||
@ -181,6 +186,12 @@ windowContactLivingRoom2.start()
|
||||
allLabeledItems.push(windowContactLivingRoom2)
|
||||
allWindows.push(windowContactLivingRoom2)
|
||||
|
||||
let thermostatLivingRoom = new MaxThermostat('Gnd', 'LivingRoom', 'Thermostat', 'Thermostat Wohnzimmer', 30, [windowContactLivingRoom1, windowContactLivingRoom2])
|
||||
thermostatLivingRoom.start()
|
||||
thermostatLivingRoom.setPresetTemperature(21.0)
|
||||
allLabeledItems.push(thermostatLivingRoom)
|
||||
allThermostatItems.push(thermostatLivingRoom)
|
||||
|
||||
// Flur -----------------------------------------------------------------------------------------------------
|
||||
// Flur Schreibtisch 83221 24 1 83220 24 1
|
||||
let hallwayDeskLight = new M433SwitchItem('Gnd', 'Hallway', 'DeskLight', 'Schreibtischlampe Flur', '83221 24 1', '83220 24 1')
|
||||
@ -205,6 +216,17 @@ windowContactHallway.start()
|
||||
allLabeledItems.push(windowContactHallway)
|
||||
allWindows.push(windowContactHallway)
|
||||
|
||||
let thermostatHallway1 = new MaxThermostat('Gnd', 'Hallway', 'Thermostat1', 'Thermostat Flur vorne', 32, [])
|
||||
thermostatHallway1.start()
|
||||
thermostatHallway1.setPresetTemperature(19.0)
|
||||
allLabeledItems.push(thermostatHallway1)
|
||||
allThermostatItems.push(thermostatHallway1)
|
||||
|
||||
let thermostatHallway2 = new MaxThermostat('Gnd', 'Hallway', 'Thermostat2', 'Thermostat Flur hinten', 33, [])
|
||||
thermostatHallway2.start()
|
||||
thermostatHallway2.setPresetTemperature(5.0)
|
||||
allLabeledItems.push(thermostatHallway2)
|
||||
allThermostatItems.push(thermostatHallway2)
|
||||
|
||||
// Küche ----------------------------------------------------------------------------------------------------
|
||||
// Küche Fensterbank 66837 24 1 66836 24 1
|
||||
|
Reference in New Issue
Block a user