26 lines
1008 B
C
26 lines
1008 B
C
// Secrets for your local home network
|
|
|
|
// This is a "hard way" to configure your local WiFi network name and passphrase
|
|
// into the source code and the uploaded sketch.
|
|
//
|
|
// Using the WiFi Manager is preferred and avoids reprogramming when your network changes.
|
|
// See https://homeding.github.io/#page=/wifimanager.md
|
|
|
|
// ssid and passPhrase can be used when compiling for a specific environment as a 2. option.
|
|
|
|
// add you wifi network name and PassPhrase or use WiFi Manager
|
|
#ifndef STASSID
|
|
#define STASSID "WIFI-ID"
|
|
#define STAPSK "WIFI-PWD"
|
|
#endif
|
|
|
|
const char *ssid = STASSID;
|
|
const char *passPhrase = STAPSK;
|
|
|
|
// MQTT Broker settings
|
|
const char *mqtt_broker = "broker.emqx.io"; // EMQX broker endpoint
|
|
const char *mqtt_topic = "emqx/esp8266/led"; // MQTT topic
|
|
const char *mqtt_username = "emqx"; // MQTT username for authentication
|
|
const char *mqtt_password = "public"; // MQTT password for authentication
|
|
const int mqtt_port = 1883; // MQTT port (TCP)
|
|
const char *mqtt_clientId = "tic_client-" |