You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i do use this library together with a keypad (4x4 Foil) and it throws compile errors in arduino ide because of the use of "IDLE" variable which is already used by lots of other librarys.
maybe we can change IDLE to IDLE_TFT in ?
For the time now anyone can change in the keyboard lib IDLE to IDLE_KEY:
The text was updated successfully, but these errors were encountered:
Meins321
changed the title
Library collides with keypad.h (keypad.cpp) IDLE de
Library collides with keypad.h (keypad.cpp) IDLE in Variable pls change
Jul 1, 2020
@sumotoy
Hello everyone,
i do use this library together with a keypad (4x4 Foil) and it throws compile errors in arduino ide because of the use of "IDLE" variable which is already used by lots of other librarys.
maybe we can change IDLE to IDLE_TFT in ?
The standard Arduion Keypad IDE suggests to use the Keypad v3.1.1 by Mark Stanley, Alexander Brevig found here:
https://github.com/Chris--A/Keypad and https://playground.arduino.cc/Code/Keypad/
together with our library here throws errors
DebugOut
```C# libraries\Keypad\src/Key.h:41:15: error: redeclaration of 'IDLE' typedef enum{ IDLE, PRESSED, HOLD, RELEASED } KeyState libraries\TFT_ST7735-1.0p1/TFT_ST7735.h:104:38: note: previous declaration 'ST7735_modes IDLE' enum ST7735_modes { NORMAL=0,PARTIAL,IDLE,SLEEP,INVERT,DISP_ON,DISP_OFF };//0,1,2,3,4,5,6 ```Change:
Any help very appreciated
For the time now anyone can change in the keyboard lib IDLE to IDLE_KEY:
The text was updated successfully, but these errors were encountered: