added hello world for testing

This commit is contained in:
John Lancaster
2023-04-26 00:19:36 -05:00
parent 6fd87f1910
commit 0088021b81
2 changed files with 10 additions and 0 deletions

3
apps/apps.yaml Normal file
View File

@@ -0,0 +1,3 @@
hello_world:
module: hello
class: HelloWorld

7
apps/hello.py Normal file
View 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')