upd index

This commit is contained in:
joBr99
2022-06-11 21:26:22 +02:00
parent 982ababf1e
commit 4a8f166501
4 changed files with 44 additions and 3 deletions

View File

@@ -1 +0,0 @@
# First steps

42
docs/config-overview.md Normal file
View File

@@ -0,0 +1,42 @@
# Configuration
To confiure your NSPanel to your needs, you need to edit the `apps.yaml` inside of your Appdaemon config folder and add card and entities you want to display on the screen.
If you've sucessfully set up mqtt, you should already have a configuration looking like this:
```yaml
---
nspanel-1:
module: nspanel-lovelace-ui
class: NsPanelLovelaceUIManager
config:
panelRecvTopic: "tele/tasmota_your_mqtt_topic/RESULT"
panelSendTopic: "cmnd/tasmota_your_mqtt_topic/CustomSend"
```
You can continue from this point adding
```yaml
---
nspanel-1:
module: nspanel-lovelace-ui
class: NsPanelLovelaceUIManager
config:
panelRecvTopic: "tele/tasmota_your_mqtt_topic/RESULT"
panelSendTopic: "cmnd/tasmota_your_mqtt_topic/CustomSend"
updateMode: "auto-notify"
locale: "de_DE"
screensaver:
entity: weather.k3ll3r
cards:
- type: cardEntities
entities:
- entity: switch.example_item
name: NameOverride
icon: mdi:lightbulb
- entity: light.example_item
- entity: cover.example_item
- entity: input_boolean.example_item
title: Example Entities 1
```

View File

@@ -59,7 +59,7 @@ plugins:
- mkdocs-video
nav:
- "Overview": overview.md
- "Overview": index.md
- "Getting started":
- "First steps":
- "Prepare NsPanel": prepare_nspanel.md
@@ -67,4 +67,4 @@ nav:
- "Configure MQTT": configure_mqtt.md
- "FAQ": faq.md
- "Configuration - apps.yaml":
- "Cards": cards.md
- "Overview": config-overview.md