2022-12-20 14:05:32 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
|
2022-12-27 14:39:53 +01:00
|
|
|
import config
|
2023-01-20 08:03:06 +01:00
|
|
|
import devices
|
2023-01-25 07:40:33 +01:00
|
|
|
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
|
2023-01-30 12:20:02 +01:00
|
|
|
import logging
|
2022-12-20 14:05:32 +01:00
|
|
|
|
2023-01-11 15:39:09 +01:00
|
|
|
|
2022-12-20 14:05:32 +01:00
|
|
|
try:
|
|
|
|
from config import APP_NAME as ROOT_LOGGER_NAME
|
|
|
|
except ImportError:
|
|
|
|
ROOT_LOGGER_NAME = 'root'
|
|
|
|
logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
|
|
|
|
|
|
|
|
|
2023-01-25 07:40:33 +01:00
|
|
|
class first_floor_west_julian(room):
|
2022-12-20 14:05:32 +01:00
|
|
|
def __init__(self, mqtt_client):
|
2023-01-25 07:40:33 +01:00
|
|
|
#
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Virtual Device Interface
|
2023-01-20 08:03:06 +01:00
|
|
|
#
|
|
|
|
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
|
|
|
|
)
|
2022-12-20 14:05:32 +01:00
|
|
|
|
|
|
|
|
2023-01-25 07:40:33 +01:00
|
|
|
class first_floor_west_bath(room):
|
2023-01-11 15:39:09 +01:00
|
|
|
def __init__(self, mqtt_client):
|
2023-01-25 07:40:33 +01:00
|
|
|
#
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Virtual Device Interface
|
|
|
|
#
|
|
|
|
self.heating_function_videv = videv_heating(
|
|
|
|
mqtt_client, config.TOPIC_FFW_BATH_HEATING_VALVE_VIDEV,
|
|
|
|
self.heating_function
|
|
|
|
)
|
2023-01-20 08:03:06 +01:00
|
|
|
|
2023-01-14 13:27:36 +01:00
|
|
|
|
2023-01-25 07:40:33 +01:00
|
|
|
class first_floor_west_living(room):
|
2023-01-14 13:27:36 +01:00
|
|
|
def __init__(self, mqtt_client):
|
2023-01-25 07:40:33 +01:00
|
|
|
#
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Virtual Device Interface
|
2023-01-20 08:03:06 +01:00
|
|
|
#
|
|
|
|
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
|
|
|
|
)
|
2023-01-14 13:27:36 +01:00
|
|
|
|
|
|
|
|
2023-01-25 07:40:33 +01:00
|
|
|
class first_floor_west_sleep(room):
|
2023-01-14 13:27:36 +01:00
|
|
|
def __init__(self, mqtt_client):
|
2023-01-25 07:40:33 +01:00
|
|
|
#
|
|
|
|
# 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)
|
|
|
|
|
|
|
|
#
|
|
|
|
# Virtual Device Interface
|
2023-01-20 08:03:06 +01:00
|
|
|
#
|
|
|
|
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
|
|
|
|
)
|