Revert "Add on-screen keyboard implementation on Trackball device. (#7625)" (#7704)

This reverts commit fe3f14a63e.
This commit is contained in:
Ben Meadors
2025-08-21 06:29:23 -05:00
committed by GitHub
parent fe3f14a63e
commit 1daf5aad1f
15 changed files with 30 additions and 1226 deletions

View File

@@ -191,8 +191,6 @@ ScanI2C::DeviceAddress cardkb_found = ScanI2C::ADDRESS_NONE;
uint8_t kb_model;
// global bool to record that a kb is present
bool kb_found = false;
// global bool to record that on-screen keyboard (OSK) is present
bool osk_found = false;
// The I2C address of the RTC Module (if found)
ScanI2C::DeviceAddress rtc_found = ScanI2C::ADDRESS_NONE;
@@ -1414,10 +1412,6 @@ void setup()
#endif
#endif
#if defined(HAS_TRACKBALL) || (defined(INPUTDRIVER_ENCODER_TYPE) && INPUTDRIVER_ENCODER_TYPE == 2)
osk_found = true;
#endif
#if defined(ARCH_ESP32) && !MESHTASTIC_EXCLUDE_WEBSERVER
// Start web server thread.
webServerThread = new WebServerThread();