initial commit with ad_toolbox submodule
This commit is contained in:
BIN
apps/__pycache__/hello.cpython-312.pyc
Normal file
BIN
apps/__pycache__/hello.cpython-312.pyc
Normal file
Binary file not shown.
1
apps/ad_toolbox
Submodule
1
apps/ad_toolbox
Submodule
Submodule apps/ad_toolbox added at 04ba3bf63c
3
apps/apps.yaml
Normal file
3
apps/apps.yaml
Normal file
@@ -0,0 +1,3 @@
|
||||
hello_world:
|
||||
module: hello
|
||||
class: HelloWorld
|
||||
3
apps/apps.yaml.example
Normal file
3
apps/apps.yaml.example
Normal file
@@ -0,0 +1,3 @@
|
||||
hello_world:
|
||||
module: hello
|
||||
class: HelloWorld
|
||||
13
apps/hello.py
Normal file
13
apps/hello.py
Normal file
@@ -0,0 +1,13 @@
|
||||
import hassapi as hass
|
||||
|
||||
#
|
||||
# Hello 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