initial commit with ad_toolbox submodule
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/conf/@eaDir
|
||||
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
[submodule "apps/ad_toolbox"]
|
||||
path = apps/ad_toolbox
|
||||
url = https://gitea.pgironde.fr/Pierre/ad_toolbox.git
|
||||
BIN
@eaDir/.DS_Store@SynoResource
Normal file
BIN
@eaDir/.DS_Store@SynoResource
Normal file
Binary file not shown.
16
appdaemon.yaml
Normal file
16
appdaemon.yaml
Normal file
@@ -0,0 +1,16 @@
|
||||
appdaemon:
|
||||
latitude: 0
|
||||
longitude: 0
|
||||
elevation: 30
|
||||
time_zone: Europe/Berlin
|
||||
plugins:
|
||||
HASS:
|
||||
type: hass
|
||||
ha_url: http://10.0.0.21:8123
|
||||
token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiZThhYWI2ZTlkNmQ0NWU2YTk1ODU5OWJjOWM3MWJkYiIsImlhdCI6MTc3NjEwOTc0NCwiZXhwIjoyMDkxNDY5NzQ0fQ.BorkjFjWlWCZqnUa9-NMUxGsDiupDoRZ3cEgsmeSofM
|
||||
cert_verify: True
|
||||
http:
|
||||
url: http://0.0.0.0:5050
|
||||
admin:
|
||||
api:
|
||||
hadashboard:
|
||||
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!")
|
||||
14
dashboards/Hello.dash
Normal file
14
dashboards/Hello.dash
Normal file
@@ -0,0 +1,14 @@
|
||||
#
|
||||
# Main arguments, all optional
|
||||
#
|
||||
title: Hello Panel
|
||||
widget_dimensions: [120, 120]
|
||||
widget_margins: [5, 5]
|
||||
columns: 8
|
||||
|
||||
label:
|
||||
widget_type: label
|
||||
text: Hello World
|
||||
|
||||
layout:
|
||||
- label(2x2)
|
||||
1
requirement.txt
Normal file
1
requirement.txt
Normal file
@@ -0,0 +1 @@
|
||||
debugpy
|
||||
4
system_packages.txt
Normal file
4
system_packages.txt
Normal file
@@ -0,0 +1,4 @@
|
||||
libstdc++
|
||||
gcompat
|
||||
bash
|
||||
git
|
||||
Reference in New Issue
Block a user