Browse Source

ffw/bath added to central function-list

tags/v1.0.0
Dirk Alders 1 year ago
parent
commit
8f4ce1badf
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      function/__init__.py

+ 2
- 1
function/__init__.py View File

4
 import devices
4
 import devices
5
 from function.stairway import stairway
5
 from function.stairway import stairway
6
 from function.ground_floor_west import ground_floor_west_floor, ground_floor_west_marion, ground_floor_west_dirk
6
 from function.ground_floor_west import ground_floor_west_floor, ground_floor_west_marion, ground_floor_west_dirk
7
-from function.first_floor_west import first_floor_west_julian, first_floor_west_living
7
+from function.first_floor_west import first_floor_west_julian, first_floor_west_living, first_floor_west_bath
8
 from function.first_floor_east import first_floor_east_floor, first_floor_east_kitchen, first_floor_east_dining, first_floor_east_sleep, first_floor_east_living
8
 from function.first_floor_east import first_floor_east_floor, first_floor_east_kitchen, first_floor_east_dining, first_floor_east_sleep, first_floor_east_living
9
 import inspect
9
 import inspect
10
 import logging
10
 import logging
33
         # first floor west
33
         # first floor west
34
         self.ffw_julian = first_floor_west_julian(self.mqtt_client)
34
         self.ffw_julian = first_floor_west_julian(self.mqtt_client)
35
         self.ffw_living = first_floor_west_living(self.mqtt_client)
35
         self.ffw_living = first_floor_west_living(self.mqtt_client)
36
+        self.ffw_bath = first_floor_west_bath(self.mqtt_client)
36
         # first floor east
37
         # first floor east
37
         self.ffe_floor = first_floor_east_floor(self.mqtt_client)
38
         self.ffe_floor = first_floor_east_floor(self.mqtt_client)
38
         self.ffe_kitchen = first_floor_east_kitchen(self.mqtt_client)
39
         self.ffe_kitchen = first_floor_east_kitchen(self.mqtt_client)

Loading…
Cancel
Save