updating to latest

This commit is contained in:
root
2021-11-04 01:18:18 -04:00
parent f92b773514
commit 7eadb4c49c
153 changed files with 19015 additions and 5168 deletions

Binary file not shown.

4
appdaemon/apps/apps.yaml Normal file
View File

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

13
appdaemon/apps/hello.py Normal file
View File

@@ -0,0 +1,13 @@
import appdaemon.plugins.hass.hassapi as hass
#
# Hellow World App
#
# Args:
#
class HelloWorld(hass.Hass):
def initialize(self):
self.log("Hello from AppDaemon")
self.log("You are now ready to run Apps!")