Closed Vogete closed 1 year ago
hey, can you add the log from tasmota console?
foget the tasmota log; I think the app in appdaemon is not running at all; can you post the volume mounts you are using for homeassistant and appdaemon?
The Backend is downloaded by HACS inside of the homeassistant container; to enable appdaemon to access this downloaded application your appdaemon volume mount needs to be inside of the homeassistant one.
See this Example:
version: "3.5"
services:
homeassistant:
image: ghcr.io/home-assistant/home-assistant:stable
container_name: homeassistant
network_mode: host
volumes:
- ./docker-data/homeassistant/:/config
- /etc/localtime:/etc/localtime:ro
environment:
- TZ=Europe/Berlin
privileged: true
restart: unless-stopped
appdaemon:
container_name: appdaemon
image: acockburn/appdaemon:latest
environment:
- HA_URL=http://your-homeassistant-url:8123
- TOKEN="xxxxxx"
volumes:
- /etc/localtime:/etc/localtime:ro
- ./docker-data/homeassistant/appdaemon:/conf
depends_on:
- homeassistant
restart: unless-stopped
Oh wow, that was actually the issue! I moved my config inside the ..../homeassistant/appdaemon
folder, pointed the volume mount of appdaemon to the correct folder (now inside HA), and the NSPanel immediately started working.
I completely missed that step during AppDaemon installation.
Thanks for the very fast and awesome help! You are the best! :)
PROBLEM DESCRIPTION
I'm seeing the waiting for content message on the Panel and I'm unable to find the configuration issue.
https://docs.nspanel.pky.eu/faq/#waiting-for-content-this-is-taking-longer-than-usual-on-the-screen
REQUESTED INFORMATION
Make sure your have performed every step and checked the applicable boxes before submitting your issue. Thank you!
[X] Provide a screenshot of your tasmota mqtt configuration:
[X] Provide your appdaemon.yaml:
[X] Provide your apps.yaml:
nspanel-1: module: nspanel-lovelace-ui class: NsPanelLovelaceUIManager config: panelRecvTopic: "tele/tasmota_0CB430/RESULT" panelSendTopic: "cmnd/tasmota_0CB430/CustomSend" model: eu
ADDITIONAL INFORMATION
Add information about your setup here, if any. (For example docker version of AppDaemon instead of the HomeAssistant Add-on)
Home Assistant can already control the 2 buttons (and display their state) on the NSPanel. Mosquitto is using anonymous login, but it seems that NSPanel is publishing updates of the temp sensor and the 2 relays correctly to MQTT, which HA then fetches and displays correctly. All indication shows that MQTT is connected and working on AppDaemon, NSPanel Tasmota, and HomeAssistant.
Containers running: