2022-07-05 22:36:23 +00:00
|
|
|
// ToDo: refactor the global GLOBALS to FDRS_GLOBALS as GLOBALS is ... well, too global ;)
|
|
|
|
#ifndef GLOBALS
|
|
|
|
#define GLOBALS
|
2022-06-17 23:51:09 +00:00
|
|
|
#define GLOBAL_SSID "Your SSID"
|
|
|
|
#define GLOBAL_PASS "Password"
|
|
|
|
#define GLOBAL_MQTT_ADDR "192.168.0.8"
|
|
|
|
|
2022-06-25 19:17:02 +00:00
|
|
|
//#define GLOBAL_MQTT_AUTH //uncomment to enable MQTT authentication
|
|
|
|
#define GLOBAL_MQTT_USER "Your MQTT Username"
|
|
|
|
#define GLOBAL_MQTT_PASS "Your MQTT Password"
|
|
|
|
|
2022-06-17 23:51:09 +00:00
|
|
|
#define GLOBAL_BAND 915E6 //LoRa Frequency Band
|
|
|
|
#define GLOBAL_SF 7 //LoRa Spreading Factor
|
|
|
|
|
2022-07-05 22:36:23 +00:00
|
|
|
#endif GLOBALS
|