Weather station on NodeMCU using a DHT22 temperature sensor
flowchart TD
ESP["π NodeMCU ESP8266"] -->|Digital Pin| DHT["π‘οΈ DHT22 Sensor"]
ESP -->|Wi-Fi / MQTT Publish| MQTT["π‘ MQTT Broker"]
subgraph "π Raspberry Pi"
direction TB
MQTT
Rust["π¦ Rust Program"]
DB["ποΈ SQLite Database"]
HA["π Home Assistant"]
end
Rust -->|Subscribes to topic| MQTT
Rust -->|Writes data to| DB
HA -->|Reads data from| MQTT