Go to the documentation of this file. 13 #define DEBUG_PORT Serial // Serial debug port 14 #define DEBUG_PORT_BAUDRATE 115200 // Serial debuf baud rate 20 #define WIFI_SSID "..." // SSID to connect to 21 #define WIFI_PASSWORD "..." // Wifi password 27 #define RESET_PIN 14 // GPIO for the reset pad in the RC1701HP module 28 #define RX_PIN 5 // GPIO connected to the TX pad in the RC1701HP module 29 #define TX_PIN 4 // GPIO connected to the RX pad in the RC1701HP module 35 #define WIZE_CHANNEL CHANNEL_04 // Wize channel to use (nodes must be sending on the same channel) 36 #define WIZE_DATARATE DATARATE_2400bps // Wize datarate to use (nodes must be using the same datarate) 42 #define FORWARDER_SERVER IPAddress(52,169,76,203) // LoRaWAN server (The Things Network EU server) 43 #define FORWARDER_PORT 1700 // UDP port 44 #define FORWARDER_LATITUDE 0.00000000 // Gateway latitude (degrees, north positive) 45 #define FORWARDER_LONGITUDE 0.00000000 // Gateway longitude (degrees, east positive) 46 #define FORWARDER_ALTITUDE 0 // Gateway altitude (meters) 47 #define FORWARDER_GATEWAY_TYPE "..." // Gateway type 48 #define FORWARDER_EMAIL "..." // Administrator email 49 #define FORWARDER_DESCRIPTION "..." // Gateway description 55 #define NTP_SERVER "pool.ntp.org" // NTP server 56 #define NTP_SYNC_INTERVAL 10 // On boot, try to sync every 10 seconds 57 #define NTP_UPDATE_INTERVAL 1800 // Once sync'ed, re-sync every 30 minutes