the old fixaroo

This commit is contained in:
Timm Bogner 2022-05-20 15:07:08 -05:00 committed by GitHub
parent 11fafc9c86
commit 5586427111
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 2 deletions

View File

@ -25,7 +25,9 @@
#include <FastLED.h>
#endif
#include "fdrs_functions.h"
//#ifdef CREDENTIALS
//#include <credentials.h>
//#endif
void setup() {
#if defined(ESP8266)

View File

@ -17,6 +17,7 @@
#define USE_LORA
//#define USE_WIFI //Used only for MQTT gateway
//#define CREDENTIALS
//ESP32 Only -- Define UART pins and interface.
#define RXD2 14
@ -40,3 +41,7 @@
//866E6 for Europe
//915E6 for North America
#define BAND 915E6
#ifdef CREDENTIALS
#include <credentials.h>
#endif

View File

@ -496,5 +496,5 @@ void begin_espnow() {
#endif
DBG(" ESP-NOW Initialized.");
DBG(WIFI_NET);
}