mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-01 18:00:00 -07:00
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:
committed by
Cooper Quintin
parent
f23cc07652
commit
b7636386fc
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user