Initial project, yet to be tested

This commit is contained in:
Gregory Ballantine
2026-09-04 09:14:56 -04:00
parent 24b510bf41
commit fa49168549
4 changed files with 296 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
# This file sets the configuration used by pico-thermo
module Config
WIFI_SSID = "CHANGE_ME" # WiFi network name
WIFI_PASS = "CHANGE_ME" # WiFi password
MQTT_BROKER = "192.168.1.100" # Set this to your MQTT server IP/name
MQTT_PORT = 1883 # You can probably leave this alone
MQTT_USER = nil # Set this if your MQTT server requires auth
MQTT_PASS = nil # Set this if your MQTT server requires auth
CLIENT_ID = "pico2w_bme280" # Change this per-node
NODE_ID = "pico2w_environment" # Change this per-node
end