14 lines
642 B
Ruby
14 lines
642 B
Ruby
# 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
|