//! MielinOS-backed device sensor.
//!
//! [`MielinDeviceSensor`] uses `mielin_hal` to detect CPU, memory, and platform
//! information. Battery and network state are **not** provided by `mielin_hal`
//! and intentionally remain `None`/`Unknown` — these require separate sensors
//! (e.g., browser Battery Status API, OS-level network APIs).
use ;
/// Device sensor backed by `mielin_hal`.
///
/// Provides:
/// - CPU core count (as a load proxy mapped to `cpu_load`)
/// - Available memory in MB from `system::MemoryInfo`
/// - Device type from `platform::detect_platform()`
///
/// Does **not** provide battery or network state — `mielin_hal` does not
/// expose those interfaces; they require OS/browser-specific APIs.
;