mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-10 07:10:42 +00:00
ca91cde9ec
header wrap-up
16 lines
504 B
C
16 lines
504 B
C
// ToDo: refactor the global GLOBALS to FDRS_GLOBALS as GLOBALS is ... well, too global ;)
|
|
#ifndef GLOBALS
|
|
#define GLOBALS
|
|
#define GLOBAL_SSID "Your SSID"
|
|
#define GLOBAL_PASS "Password"
|
|
#define GLOBAL_MQTT_ADDR "192.168.0.8"
|
|
|
|
//#define GLOBAL_MQTT_AUTH //uncomment to enable MQTT authentication
|
|
#define GLOBAL_MQTT_USER "Your MQTT Username"
|
|
#define GLOBAL_MQTT_PASS "Your MQTT Password"
|
|
|
|
#define GLOBAL_BAND 915E6 //LoRa Frequency Band
|
|
#define GLOBAL_SF 7 //LoRa Spreading Factor
|
|
|
|
#endif GLOBALS
|