def lights(): if request.method in ('PUT', 'POST'): helpers.toggle() else: return light.status() + "\n"
def lightstate(): return light.status(),
def lightStatus(): return str(light.status())