Adding initial working project, ported from pico-thermo

This commit is contained in:
2026-09-06 23:26:11 -04:00
parent 40d5f89245
commit 12959be182
6 changed files with 642 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
package main
const (
WifiSSID = "My Wifi Name"
WifiPass = "SecretWifiPassword"
MQTTHost = "192.168.1.50" // Must be an IP address; DNS resolution is not supported currently
MQTTPort = "1883"
MQTTUser = "" // Leave empty if not required
MQTTPass = "" // Leave empty if not required
NodeName = "Studio Weather"
NodeID = "studio_env"
ClientID = "pico2w_studio_env"
)