Update to the text and small demo

This commit is contained in:
Valère Plantevin
2026-05-13 17:22:10 -04:00
parent 872bbb8c2c
commit a7b8065739
4 changed files with 168 additions and 109 deletions

View File

@@ -43,9 +43,10 @@ struct Cli {
///
/// - `single` (default): one sensor per device of `--sensor-type`, on
/// `--sensor-id`. Lowest-cardinality, easiest to reason about.
/// - `industrial`: five sensors per device on ids 0..4 — Temperature,
/// Humidity, Pressure, Voltage, Current. Lights up every dashboard
/// panel.
/// - `industrial`: seven sensors per device on ids 0..6 — Temperature,
/// Humidity, Pressure, Voltage, Current, Presence, Relay. Lights up
/// every dashboard panel and primes the closed-loop demo (Presence
/// dips below threshold → substrate dispatches T3 Relay setpoints).
#[arg(long, value_enum, default_value_t = SensorProfile::Single)]
profile: SensorProfile,