updating to latest
This commit is contained in:
BIN
appdaemon/apps/__pycache__/hello.cpython-39.pyc
Normal file
BIN
appdaemon/apps/__pycache__/hello.cpython-39.pyc
Normal file
Binary file not shown.
4
appdaemon/apps/apps.yaml
Normal file
4
appdaemon/apps/apps.yaml
Normal file
@@ -0,0 +1,4 @@
|
||||
---
|
||||
hello_world:
|
||||
module: hello
|
||||
class: HelloWorld
|
||||
13
appdaemon/apps/hello.py
Normal file
13
appdaemon/apps/hello.py
Normal 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!")
|
||||
Reference in New Issue
Block a user