Smarthome Functionen
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

__init__.py 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. #
  4. import config
  5. import devices
  6. from function.garden import garden
  7. from function.stairway import stairway
  8. from function.ground_floor_west import ground_floor_west
  9. from function.first_floor_west import first_floor_west
  10. from function.first_floor_east import first_floor_east
  11. from function.rooms import room_collection
  12. from function.videv import all_off, videv_warnings
  13. import logging
  14. try:
  15. from config import APP_NAME as ROOT_LOGGER_NAME
  16. except ImportError:
  17. ROOT_LOGGER_NAME = 'root'
  18. logger = logging.getLogger(ROOT_LOGGER_NAME).getChild(__name__)
  19. class all_functions(room_collection):
  20. def __init__(self, mqtt_client, pd, vd):
  21. super().__init__(mqtt_client, pd, vd)
  22. #
  23. # Rooms
  24. #
  25. # garden
  26. self.gar = garden(self.mqtt_client, pd, vd)
  27. # stairway
  28. self.stw = stairway(self.mqtt_client, pd, vd)
  29. # ground floor west
  30. self.gfw = ground_floor_west(self.mqtt_client, pd, vd)
  31. # first floor west
  32. self.ffw = first_floor_west(self.mqtt_client, pd, vd)
  33. # first floor east
  34. self.ffe = first_floor_east(self.mqtt_client, pd, vd)
  35. #
  36. # Interactions
  37. #
  38. # cross_room_interactions
  39. self.init_cross_room_interactions()
  40. # Off Buttons
  41. self.init_off_functionality()
  42. # Warnings
  43. videv_warning = videv_warnings(self.mqtt_client, config.TOPIC_WARNINGS)
  44. for device in self.all_devices():
  45. device.add_callback(devices.base.base.KEY_WARNING, None, videv_warning.warningcollector)
  46. def init_cross_room_interactions(self):
  47. # shelly dirk input 1
  48. self.last_gfw_dirk_input_1 = None
  49. self.gfw.dirk.main_light_shelly.add_callback(self.gfw.dirk.main_light_shelly.KEY_INPUT_1, None, self.gfw_dirk_input_1)
  50. # tradfri button ffe_sleep right click
  51. self.ffe.sleep.button_tradfri.add_callback(self.ffe.sleep.button_tradfri.KEY_ACTION,
  52. self.ffe.sleep.button_tradfri.ACTION_RIGHT,
  53. self.ffe.floor.main_light_shelly.toggle_output_0_mcb)
  54. def init_off_functionality(self):
  55. # ALL OFF - Virtual device
  56. self.videv_all_off = all_off(self.mqtt_client, config.TOPIC_ALL_OFF_VIDEV, self)
  57. # ALL OFF - Long push stairway
  58. self.stw.stairway.main_light_shelly.add_callback(self.stw.stairway.main_light_shelly.KEY_LONGPUSH_0,
  59. True, self.stw.stairway.main_light_shelly.flash_0_mcb)
  60. self.stw.stairway.main_light_shelly.add_callback(self.stw.stairway.main_light_shelly.KEY_LONGPUSH_0, True, self.all_off)
  61. # FFE ALL OFF - Long push ffe_floor
  62. self.ffe.floor.main_light_shelly.add_callback(self.ffe.floor.main_light_shelly.KEY_LONGPUSH_0,
  63. True, self.ffe.floor.main_light_shelly.flash_0_mcb)
  64. self.ffe.floor.main_light_shelly.add_callback(self.ffe.floor.main_light_shelly.KEY_LONGPUSH_0, True, self.ffe.all_off)
  65. # FFE ALL OFF - Long push input device
  66. self.ffe.sleep.button_tradfri.add_callback(devices.tradfri_button.KEY_ACTION, devices.tradfri_button.ACTION_RIGHT_LONG, self.ffe.all_off)
  67. def gfw_dirk_input_1(self, device, key, data):
  68. if self.last_gfw_dirk_input_1 is not None:
  69. if self.last_gfw_dirk_input_1 != data:
  70. self.gfw.floor.main_light_shelly.toggle_output_0_mcb(device, key, data)
  71. self.last_gfw_dirk_input_1 = data