8 lines
203 B
Python
8 lines
203 B
Python
from appdaemon.plugins.hass.hassapi import Hass
|
|
|
|
|
|
class HelloWorld(Hass):
|
|
def initialize(self):
|
|
# self.set_state(entity_id='input_boolean.enable', state='on')
|
|
self.log('Hello World')
|