Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teuler/solarmqtt
Display für Solar-Balkonkraftwerk mit Pico und MQTT
https://github.com/teuler/solarmqtt
Last synced: 1 day ago
JSON representation
Display für Solar-Balkonkraftwerk mit Pico und MQTT
- Host: GitHub
- URL: https://github.com/teuler/solarmqtt
- Owner: teuler
- License: mit
- Created: 2023-06-04T06:44:54.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-22T11:16:42.000Z (about 1 year ago)
- Last Synced: 2024-10-12T15:48:31.055Z (about 1 month ago)
- Language: Visual Basic 6.0
- Size: 3.32 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# solarmqtt
[](https://github.com/teuler/solarmqtt/blob/main/pics/scr02.png)
Display für Solar-Balkonkraftwerk mit Pico und MQTT. Läuft auf einem [Raspberry Pi Pico W](https://www.raspberrypi.com/products/raspberry-pi-pico/) unter [MMBasic](https://mmbasic.com/) in der [Webmite](https://geoffg.net/webmite.html)-Version. Interpretiert MQTT-Nachrichten über die erzeugte Solarenergie, hier vom in [Home Assistant](https://www.home-assistant.io/) eingebauten MQTT-Broker.
## Material
- 1x [Raspberry Pi Pico W](https://www.raspberrypi.com/products/raspberry-pi-pico/), z.B. von [Reichelt](https://www.reichelt.de/de/de/raspberry-pi-pico-w-rp2040-cortex-m0-wlan-microusb-rasp-pi-pico-w-p329646.html?PROVID=2788&gclid=EAIaIQobChMIuuXRwPKs_wIVTxUGAB0hJw2sEAQYASABEgL6TPD_BwE&&r=1)
- 1x [WaveShare 2.8" 320x240 Touch Display Module für Raspberry Pi Pico](https://www.waveshare.com/wiki/Pico-ResTouch-LCD-2.8) (262K Farben, SPI), z.B. von [Eckstein](https://eckstein-shop.de/WaveShare28inchTouchDisplayModuleforRaspberryPiPico2C262KColors2C320C3972402CSPI)
- Optional 1x Micro-SD-Karte (bis 32 GB, mit FAT16 oder FAT32 formatiert), falls Screenshots gespeichert werden sollen## House assistant
**Auslöser - Time trigger pattern**
```yaml
platform: time_pattern
seconds: /10
enabled: true
```**Aktion(en) - MQTT Publish**
```yaml
service: mqtt.publish
data:
qos: 0
retain: false
topic: solar/panels
payload: >-
name:
[o,u];
pw:
[{{states.sensor.shellyplug2_solar_1_power.state | round(1)}},
{{states.sensor.shellyplug2_solar_2_power.state | round(1)}}];
pw-u:
[{{states.sensor.shellyplug2_solar_1_power.attributes.unit_of_measurement}}];
en:
[{{states.sensor.shellyplug2_solar_1_energy.state | round(1)}},
{{states.sensor.shellyplug2_solar_2_energy.state | round(1)}}];
en-u:
[{{states.sensor.shellyplug2_solar_1_energy.attributes.unit_of_measurement}}];
opw:
[{{ int(is_state("binary_sensor.shellyplug2_solar_1_overpowering", "on")) }},
{{ int(is_state("binary_sensor.shellyplug2_solar_2_overpowering","on")) }}];
oht:
[{{ int(is_state("binary_sensor.shellyplug2_solar_1_overheating", "on")) }},
{{ int(is_state("binary_sensor.shellyplug2_solar_2_overheating", "on")) }}];
th:
[{{states.sensor.indoor_outdoor_meter_0580_temperatur.state}},
{{states.sensor.indoor_outdoor_meter_0580_luftfeuchtigkeit.state}}];
```## Hinweise
- Die Länge einer MQTT-Nachricht ist bei MMBasic begrenzt, daher werden kurze, weniger aussagekräftige Feldnamen in der MQTT-Nachricht verwendet