11 lines
309 B
Rust
11 lines
309 B
Rust
use crate::bluetooth::aacp::AACPEvent;
|
|
|
|
#[derive(Debug, Clone)]
|
|
pub enum BluetoothUIMessage {
|
|
OpenWindow,
|
|
DeviceConnected(String), // mac
|
|
DeviceDisconnected(String), // mac
|
|
AACPUIEvent(String, AACPEvent), // mac, event
|
|
ATTNotification(String, u16, Vec<u8>), // mac, handle, data
|
|
NoOp
|
|
} |