added hello world for testing
This commit is contained in:
3
apps/apps.yaml
Normal file
3
apps/apps.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
hello_world:
|
||||
module: hello
|
||||
class: HelloWorld
|
||||
7
apps/hello.py
Normal file
7
apps/hello.py
Normal file
@@ -0,0 +1,7 @@
|
||||
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')
|
||||
Reference in New Issue
Block a user