Merge pull request #744 from cyberman54/development

Development
This commit is contained in:
Verkehrsrot 2021-02-20 17:10:43 +01:00 committed by GitHub
commit 08fa703275
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View File

@ -48,8 +48,8 @@ static void defaultConfig(configData_t *myconfig) {
myconfig->blescantime =
BLESCANINTERVAL /
10; // BT channel scan cycle [seconds/100], default 1 (= 10ms)
myconfig->blescan = 1; // 0=disabled, 1=enabled
myconfig->wifiscan = 1; // 0=disabled, 1=enabled
myconfig->blescan = BLECOUNTER; // 0=disabled, 1=enabled
myconfig->wifiscan = WIFICOUNTER; // 0=disabled, 1=enabled
myconfig->wifiant = 0; // 0=internal, 1=external (for LoPy/LoPy4)
myconfig->macfilter = MACFILTER; // 0=disabled, 1=enabled
myconfig->rgblum = RGBLUMINOSITY; // RGB Led luminosity (0..100%)

View File

@ -21,4 +21,10 @@
#define HAS_BUTTON KEY_BUILTIN // on board button
#define HAS_LED NOT_A_PIN // no on board LED
//#define HAS_DISPLAY 1
//#define MY_DISPLAY_FLIP 1 // use if display is rotated
//#define MY_DISPLAY_SDA SDA
//#define MY_DISPLAY_SCL SCL
//#define MY_DISPLAY_RST NOT_A_PIN
#endif