iqos 1.1.1

A Rust crate for controlling IQOS devices over BLE and USB
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Backend transport implementations.
//!
//! This module contains transport-specific adapters. The initial extraction work
//! will focus on a BLE backend built around `btleplug`, while reserving a clean
//! path for future USB support.

#[cfg(feature = "btleplug-support")]
pub mod ble_btleplug;

#[cfg(feature = "usb-support")]
pub mod usb;