mirror of
https://github.com/timmbogner/Farm-Data-Relay-System
synced 2024-11-01 03:20:56 +00:00
7c15bdf675
No change to the content - just putting blocks together for simpler overview.
25 lines
612 B
C
25 lines
612 B
C
/* FARM DATA RELAY SYSTEM
|
|
*
|
|
* "fdrs_globals.h"
|
|
*
|
|
* Developed by Timm Bogner (timmbogner@gmail.com) for Sola Gratia Farm in Urbana, Illinois, USA.
|
|
*/
|
|
|
|
#ifndef FDRS_GLOBALS
|
|
#define FDRS_GLOBALS
|
|
|
|
#define GLOBAL_SSID "Your SSID"
|
|
#define GLOBAL_PASS "Password"
|
|
|
|
#define GLOBAL_MQTT_ADDR "192.168.0.8"
|
|
#define GLOBAL_MQTT_PORT 1883
|
|
|
|
//#define GLOBAL_MQTT_AUTH //Enable MQTT authentication
|
|
#define GLOBAL_MQTT_USER "Your MQTT Username"
|
|
#define GLOBAL_MQTT_PASS "Your MQTT Password"
|
|
|
|
#define GLOBAL_LORA_BAND 915E6 //LoRa Frequency Band
|
|
#define GLOBAL_LORA_SF 7 //LoRa Spreading Factor
|
|
|
|
#endif //FDRS_GLOBALS
|