123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
-
- import config
- import devices
- import logging
- from function.modules import heating_function
- from function.rooms import room
- from function.videv import videv_switch_brightness, videv_switch_brightness_color_temp, videv_heating
-
-
- try:
- from config import APP_NAME as ROOT_LOGGER_NAME
- except ImportError:
- ROOT_LOGGER_NAME = 'root'
- logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
-
-
- class first_floor_west_julian(room):
- def __init__(self, mqtt_client):
- #
- # Device initialisation
- #
- # http://shelly1l-3C6105E43452
- self.main_light_shelly = devices.shelly(mqtt_client, config.TOPIC_FFW_JULIAN_MAIN_LIGHT_SHELLY)
- self.main_light_tradfri = devices.tradfri_light(mqtt_client, config.TOPIC_FFW_JULIAN_MAIN_LIGHT_ZIGBEE)
- super().__init__(mqtt_client)
-
- ##### TEMPORARY ###################################################################################################################
- self.gui_main_light = devices.nodered_gui_light(mqtt_client, config.TOPIC_FFW_JULIAN_MAIN_LIGHT_GUI)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_STATE, None, self.main_light_shelly.set_output_0_mcb)
- self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_state_mcb)
-
- self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_enable_mcb)
- self.main_light_tradfri.add_callback(devices.tradfri_light.KEY_BRIGHTNESS, None, self.gui_main_light.set_brightness_mcb)
- self.main_light_tradfri.add_callback(devices.tradfri_light.KEY_COLOR_TEMP, None, self.gui_main_light.set_color_temp_mcb)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_BRIGHTNESS, None, self.main_light_tradfri.set_brightness_mcb)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_COLOR_TEMP, None, self.main_light_tradfri.set_color_temp_mcb)
- ##### TEMPORARY ###################################################################################################################
-
- #
- # Virtual Device Interface
- #
- self.main_light_videv = videv_switch_brightness_color_temp(
- mqtt_client, config.TOPIC_FFW_JULIAN_MAIN_LIGHT_VIDEV,
- self.main_light_shelly, devices.shelly.KEY_OUTPUT_0,
- self.main_light_tradfri, devices.tradfri_light.KEY_BRIGHTNESS,
- self.main_light_tradfri, devices.tradfri_light.KEY_COLOR_TEMP
- )
-
-
- class first_floor_west_bath(room):
- def __init__(self, mqtt_client):
- #
- # Device initialisation
- #
- self.heating_valve = devices.brennenstuhl_heatingvalve(mqtt_client, config.TOPIC_FFW_BATH_HEATING_VALVE_ZIGBEE)
- super().__init__(mqtt_client)
- #
- # Functionality initialisation
- #
- # heating function
- self.heating_function = heating_function(self.heating_valve, config.DEFAULT_TEMPERATURE_FFW_BATH)
-
- ##### TEMPORARY ###################################################################################################################
- self.gui_heating = devices.nodered_gui_radiator(mqtt_client, config.TOPIC_FFW_BATH_HEATING_VALVE_GUI)
- self.heating_function.add_callback(heating_function.KEY_TEMPERATURE_CURRENT, None, self.gui_heating.set_temperature_mcb, True)
-
- def set_heating_setpoint(device, key, data):
- self.heating_function.set(heating_function.KEY_USER_TEMPERATURE_SETPOINT, data)
- self.gui_heating.add_callback(devices.nodered_gui_radiator.KEY_SETPOINT_TEMP, None, set_heating_setpoint)
- self.heating_function.add_callback(heating_function.KEY_TEMPERATURE_SETPOINT, None, self.gui_heating.set_setpoint_temperature_mcb, True)
-
- def boost(device, key, data):
- self.heating_function.set(heating_function.KEY_START_BOOST, data)
- self.gui_heating.add_callback(devices.nodered_gui_radiator.KEY_BOOST, None, boost)
-
- def setpoint_to_default(device, key, data):
- self.heating_function.set(heating_function.KEY_SET_DEFAULT_TEMPERATURE, data)
- self.gui_heating.add_callback(devices.nodered_gui_radiator.KEY_SETPOINT_TO_DEFAULT, None, setpoint_to_default)
-
- def away_mode(device, key, data):
- self.heating_function.set(heating_function.KEY_AWAY_MODE, data)
- self.gui_heating.add_callback(devices.nodered_gui_radiator.KEY_AWAY, None, away_mode)
- self.heating_function.add_callback(heating_function.KEY_AWAY_MODE, None, self.gui_heating.set_away_mcb)
-
- def summer_mode(device, key, data):
- self.heating_function.set(heating_function.KEY_SUMMER_MODE, data)
- self.gui_heating.add_callback(devices.nodered_gui_radiator.KEY_SUMMER, None, summer_mode)
- self.heating_function.add_callback(heating_function.KEY_SUMMER_MODE, None, self.gui_heating.set_summer_mcb)
-
- self.heating_function.add_callback(heating_function.KEY_BOOST_TIMER, None, self.gui_heating.set_timer_mcb)
- ##### TEMPORARY ###################################################################################################################
-
- #
- # Virtual Device Interface
- #
- self.heating_function_videv = videv_heating(
- mqtt_client, config.TOPIC_FFW_BATH_HEATING_VALVE_VIDEV,
- self.heating_function
- )
-
- def all_off(self):
- pass
-
-
- class first_floor_west_living(room):
- def __init__(self, mqtt_client):
- #
- # Device initialisation
- #
- # http://shelly1l-84CCA8ACE6A1
- self.main_light_shelly = devices.shelly(mqtt_client, config.TOPIC_FFW_LIVINGROOM_MAIN_LIGHT_SHELLY)
- self.main_light_tradfri = devices.tradfri_light(mqtt_client, config.TOPIC_FFW_LIVINGROOM_MAIN_LIGHT_ZIGBEE)
- super().__init__(mqtt_client)
-
- ##### TEMPORARY ###################################################################################################################
- self.gui_main_light = devices.nodered_gui_light(mqtt_client, config.TOPIC_FFW_LIVINGROOM_MAIN_LIGHT_GUI)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_STATE, None, self.main_light_shelly.set_output_0_mcb)
- self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_state_mcb)
-
- self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_enable_mcb)
- self.main_light_tradfri.add_callback(devices.tradfri_light.KEY_BRIGHTNESS, None, self.gui_main_light.set_brightness_mcb)
- self.main_light_tradfri.add_callback(devices.tradfri_light.KEY_COLOR_TEMP, None, self.gui_main_light.set_color_temp_mcb)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_BRIGHTNESS, None, self.main_light_tradfri.set_brightness_mcb)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_COLOR_TEMP, None, self.main_light_tradfri.set_color_temp_mcb)
- ##### TEMPORARY ###################################################################################################################
-
- #
- # Virtual Device Interface
- #
- self.main_light_videv = videv_switch_brightness_color_temp(
- mqtt_client, config.TOPIC_FFW_LIVINGROOM_MAIN_LIGHT_VIDEV,
- self.main_light_shelly, devices.shelly.KEY_OUTPUT_0,
- self.main_light_tradfri, devices.tradfri_light.KEY_BRIGHTNESS,
- self.main_light_tradfri, devices.tradfri_light.KEY_COLOR_TEMP
- )
-
-
- class first_floor_west_sleep(room):
- def __init__(self, mqtt_client):
- #
- # Device initialisation
- #
- # http://shelly1-3494546A51F2
- self.main_light_shelly = devices.shelly(mqtt_client, config.TOPIC_FFW_SLEEP_MAIN_LIGHT_SHELLY)
- self.main_light_tradfri = devices.tradfri_light(mqtt_client, config.TOPIC_FFW_SLEEP_MAIN_LIGHT_ZIGBEE)
- super().__init__(mqtt_client)
-
- ##### TEMPORARY ###################################################################################################################
- self.gui_main_light = devices.nodered_gui_light(mqtt_client, config.TOPIC_FFW_SLEEP_MAIN_LIGHT_GUI)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_STATE, None, self.main_light_shelly.set_output_0_mcb)
- self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_state_mcb)
-
- self.main_light_shelly.add_callback(devices.shelly.KEY_OUTPUT_0, None, self.gui_main_light.set_enable_mcb)
- self.main_light_tradfri.add_callback(devices.tradfri_light.KEY_BRIGHTNESS, None, self.gui_main_light.set_brightness_mcb)
- self.gui_main_light.add_callback(devices.nodered_gui_light.KEY_BRIGHTNESS, None, self.main_light_tradfri.set_brightness_mcb)
- ##### TEMPORARY ###################################################################################################################
-
- #
- # Virtual Device Interface
- #
- self.main_light_videv = videv_switch_brightness(
- mqtt_client, config.TOPIC_FFW_SLEEP_MAIN_LIGHT_VIDEV,
- self.main_light_shelly, devices.shelly.KEY_OUTPUT_0,
- self.main_light_tradfri, devices.tradfri_light.KEY_BRIGHTNESS
- )
|