feat: support Tmobile TMOHS1 hotspot

Add support for the Tmobile TMOHS1, a Wingtech CT2MHS01-based hotspot
with a Qualcomm mdm9607. The TMOHS1 has no screen, only 5 LEDs, two of
which are RGB.
This commit is contained in:
oopsbagel
2025-06-12 20:51:59 -07:00
committed by Cooper Quintin
parent f23cc07652
commit b7636386fc
7 changed files with 307 additions and 0 deletions

View File

@@ -1,5 +1,11 @@
#[cfg(any(feature = "orbic", feature = "tplink", feature = "wingtech"))]
mod generic_framebuffer;
#[cfg(feature = "tmobile")]
mod tmobile;
#[cfg(feature = "tmobile")]
pub use tmobile::update_ui;
#[cfg(feature = "tplink")]
mod tplink;
#[cfg(feature = "tplink")]
@@ -20,6 +26,7 @@ mod wingtech;
#[cfg(feature = "wingtech")]
pub use wingtech::update_ui;
#[derive(Clone, Copy, PartialEq)]
pub enum DisplayState {
Recording,
Paused,