macrocell_office_iot/esp_sensor_firmware/mqtt_credentials.h.example

18 lines
654 B
Plaintext

/* ESP8266 environmental sensor project
*
* This header file provides the necessary credentials for the esp_sensor_firmware.ino file.
* Before compilation, add your credentials and remove the .example postfix from the filename.
* ** WARNING ** DO NOT COMMIT YOUR mqtt_credentials.h FILE CONTAINING YOUR ACTUAL CREDENTIALS.
*
* (C) 2019 Macrocell - Environmental sensing solutions
* proudly presented by Macrocell - FPGA Innovators
*/
#define wifi_ssid "macrocell_iot"
#define wifi_password "ExamplePassword"
#define mqtt_server "192.168.x.x"
#define mqtt_port 1883
#define mqtt_user "your_username"
#define mqtt_password "your_password"