Files
pico-weather/config.go.example
T
gballan c60ef1c093
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful
[Issue #1] - Adding UpdateInterval config value to set how long to wait in between each update loop, in seconds
2026-09-07 00:34:29 -04:00

22 lines
434 B
Plaintext

package main
import (
"time"
)
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"
UpdateInterval = 30 * time.Second
)