https://github.com/deishelon/pico-w-weather-station
Simple weather reporting with PicoW
https://github.com/deishelon/pico-w-weather-station
mqtt pico weather
Last synced: 3 months ago
JSON representation
Simple weather reporting with PicoW
- Host: GitHub
- URL: https://github.com/deishelon/pico-w-weather-station
- Owner: Deishelon
- Created: 2022-09-10T03:57:29.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T07:42:06.000Z (over 2 years ago)
- Last Synced: 2025-01-18T17:29:19.636Z (4 months ago)
- Topics: mqtt, pico, weather
- Language: Python
- Homepage:
- Size: 1.43 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PicoW Weather Station
> Simple weather reporting with PicoW#### Features:
- Measure current temperature & humidity with DHT22 Sensor
- Report measurements to MQTT
- Measure & Report VSYS
- Measure & Report CPU Temp
### Install MQTT on PICO W
Make sure you have REPL console.```python
import network
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
wlan.connect("Wi-Fi AP", "PASSWORD")import upip
upip.install('umqtt.simple')
```### Use
- Upload files onto PICO, adjust params (such as Wi-Fi Credentials // pins // etc ), deploy to your PICO W