123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- import devices
- from function.ground_floor_west import ground_floor_west_floor, ground_floor_west_marion, ground_floor_west_dirk
- from function.first_floor_west import first_floor_west_julian, first_floor_west_living
- from function.first_floor_east import first_floor_east_floor, first_floor_east_kitchen, first_floor_east_dining, first_floor_east_sleep_madi, first_floor_east_living
- import inspect
- from function import modules
-
- # TODO: implement circulation pump
- # TODO: implement switch off functionality (except of switch off button transportation)
- # TODO: implement garland (incl. day events like sunset, sunrise, ...)
- # TODO: implement existing nodered functionality "dirk" (ground floor west)
- # TODO: implement warning message
-
-
- class all_functions(object):
- def __init__(self, mqtt_client):
- self.mqtt_client = mqtt_client
- #
- self.__devices__ = None
- #
- # add rooms
- #
- # # ground floor west
- self.gfw_floor = ground_floor_west_floor(self.mqtt_client)
- self.gfw_marion = ground_floor_west_marion(self.mqtt_client)
- self.gfw_dirk = ground_floor_west_dirk(self.mqtt_client)
- # first floor west
- self.ffw_julian = first_floor_west_julian(self.mqtt_client)
- self.ffw_living = first_floor_west_living(self.mqtt_client)
- # first floor east
- self.ffe_floor = first_floor_east_floor(self.mqtt_client)
- self.ffe_kitchen = first_floor_east_kitchen(self.mqtt_client)
- self.ffe_dining = first_floor_east_dining(self.mqtt_client)
- self.ffe_sleep_madi = first_floor_east_sleep_madi(self.mqtt_client)
- self.ffe_living = first_floor_east_living(self.mqtt_client)
- #
- # additional functionality
- #
- self.init_input_device_sleep_madi_functionality()
- self.init_heating_functionality()
-
- def init_input_device_sleep_madi_functionality(self):
- #
- self.ffe_button_tradfri_sleep = devices.tradfri_button(
- self.mqtt_client, topic="zigbee_og_e/input_device/og_east")
- #
- self.ffe_button_tradfri_sleep.add_callback(devices.tradfri_button.KEY_ACTION, "toggle",
- self.ffe_sleep_madi.toggle_main_light)
- self.ffe_button_tradfri_sleep.add_callback(devices.tradfri_button.KEY_ACTION, "brightness_up_click",
- self.ffe_sleep_madi.toggle_bed_light_di)
- self.ffe_button_tradfri_sleep.add_callback(devices.tradfri_button.KEY_ACTION, "brightness_down_click",
- self.ffe_sleep_madi.toggle_bed_light_di)
- self.ffe_button_tradfri_sleep.add_callback(devices.tradfri_button.KEY_ACTION, "arrow_right_click",
- self.ffe_floor.toggle_main_light)
- self.ffe_button_tradfri_sleep.add_callback(devices.tradfri_button.KEY_ACTION, None,
- self.ffe_sleep_madi.fade_light)
-
- def init_heating_functionality(self):
- self.ffe_heating_sleep_madi = modules.heating_function_brennenstuhl(
- self.mqtt_client, "zigbee_og_e/radiator/sleep_madi", 20, "gui/ffe_bo_sleep_madi", "gui/ffe_ts_sleep_madi", "gui/ffe_bl_sleep_madi")
-
- def devicelist(self):
- if self.__devices__ is None:
- self.__devices__ = []
- for name, obj in inspect.getmembers(self):
- if obj.__class__.__module__ == "devices":
- self.__devices__.append(obj)
- elif obj.__class__.__module__.split('.')[0] == 'function':
- for devicename, device in inspect.getmembers(obj):
- if device.__class__.__module__ == "devices":
- self.__devices__.append(device)
- return self.__devices__
|