Adding initial working project, ported from pico-thermo
This commit is contained in:
@@ -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"
|
||||
)
|
||||
Reference in New Issue
Block a user