Remove button handling from generic esp32

This commit is contained in:
DTTerastar 2021-09-15 20:02:45 -04:00
parent c430fab013
commit c2e994c7e9
2 changed files with 11 additions and 12 deletions

View File

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [1.4.4]
- Additional sonos fingerprinting
- Remove button handling from esp32 flavors (#34)
## [1.4.3]
- Add mifit fingerprint

View File

@ -12,7 +12,7 @@
#endif
#endif
#ifdef M5STICK
#if defined M5STICK
#define LED_BUILTIN 10
#define LED_BUILTIN_ON 0
@ -20,8 +20,7 @@
#define BUTTON 39
#define BUTTON_PRESSED 0
#else
#if M5ATOM
#elif defined M5ATOM
#define LED_BUILTIN 10
#define LED_BUILTIN_ON 0
@ -29,20 +28,15 @@
#define BUTTON 39
#define BUTTON_PRESSED 0
#else // Huzzah32 or DevKit
#elif defined HUZZAH32
#define LED_BUILTIN 13
#define LED_BUILTIN_ON 1
#define BUTTON 15
#define BUTTON_PRESSED 1
#else //DevKit / generic
#endif
#endif
#ifdef M5STICK
#else
#define LED_BUILTIN 2
#define LED_BUILTIN_ON 1
#endif