#pragma once

// Copy this file to arduino_secrets.h in the same folder as the sketch.
// Use a 2.4 GHz Wi-Fi network and a dedicated MQTT account.
#define SECRET_SSID "YOUR_WIFI_NAME"
#define SECRET_PASS "YOUR_WIFI_PASSWORD"
#define SECRET_MQTT_HOST "192.168.1.10"
#define SECRET_MQTT_PORT 1883
#define SECRET_MQTT_USER "uno_r4"
#define SECRET_MQTT_PASS "YOUR_MQTT_PASSWORD"

// Port 1883 uses unencrypted MQTT. Keep this example on a trusted local network.
// Keep the real arduino_secrets.h private; never upload it to your website.
