initial commit with ad_toolbox submodule

This commit is contained in:
2026-04-15 16:14:33 +02:00
commit 0255b89ad1
13 changed files with 59 additions and 0 deletions

Binary file not shown.

1
apps/ad_toolbox Submodule

Submodule apps/ad_toolbox added at 04ba3bf63c

3
apps/apps.yaml Normal file
View File

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

3
apps/apps.yaml.example Normal file
View File

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

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