27 wiersze
725 B
Python
27 wiersze
725 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
|
|
import logging
|
|
import inspect
|
|
|
|
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 room(object):
|
|
def __init__(self, mqtt_client):
|
|
self.mqtt_client = mqtt_client
|
|
|
|
def all_off(self, device=None, key=None, data=None):
|
|
logger.info("Switching all off \"%s\"", type(self).__name__)
|
|
for name, obj in inspect.getmembers(self):
|
|
try:
|
|
if obj.__module__ == 'devices':
|
|
obj.all_off()
|
|
except AttributeError:
|
|
pass # not a module or has no method all_off
|