Closed richonguzman closed 1 year ago
It's pretty simple. You just use the I2C 'Wire' library:
Wire.requestFrom(CARDKB_ADDR, 1); if (Wire.available()) { char c = Wire.read(); // process the key press }
should I use a debounce script or just use it with the OneButton library?
THANKS!
I don't think that is applicable for the CardKb, ie. you just get whole press events, (a down then up, combined).
Thanks a Lot for this info, got my CardKB working with the T-Beam Lora32 V.1 and its working awesome.
did a menu and all to mimic APRS VHF over LoRa ;)
Hi!
could you share the code for working with CARDKB on a regular ESP32???