1
0

Add appdaemon configuration

This commit is contained in:
Przemek Grondek 2022-11-29 01:27:02 +01:00
parent 01b4ec2295
commit c15458f76b
3 changed files with 53 additions and 1 deletions

View File

@ -0,0 +1,25 @@
---
secrets: /config/secrets.yaml
appdaemon:
latitude: !secret latitude
longitude: !secret longitude
elevation: 2
time_zone: Europe/Warsaw
plugins:
HASS:
type: hass
MQTT:
type: mqtt
namespace: mqtt
client_id: "appdaemon"
client_host: 192.168.60.100
client_port: 1883
client_user: "appdaemon"
client_password: !secret appdaemon_mqtt_password
client_topics: NONE
http:
url: http://127.0.0.1:5050
admin:
api:
hadashboard:

View File

@ -0,0 +1,23 @@
---
nspanel-1:
module: nspanel-lovelace-ui
class: NsPanelLovelaceUIManager
config:
panelRecvTopic: "tele/tasmota_0E48CC/RESULT"
panelSendTopic: "cmnd/tasmota_0E48CC/CustomSend"
model: eu
sleepTimeout: 30
sleepBrightness:
- time: "7:00:00"
value: 10
- time: "23:00:00"
value: 0
screensaver:
entity: weather.home
cards:
- type: cardEntities
title: Example 1
entities:
- entity: light.couch_lights
- entity: light.office
- entity: light.kitchen_lights

View File

@ -69,4 +69,8 @@
copy:
src: python_scripts
dest: '{{ pwd_config }}'
directory_mode: yes
directory_mode: yes
- name: Copy appdaemon
copy:
src: configuration/appdaemon
dest: '{{ pwd_config }}/appdaemon'