FireStatusBox
Fire Status Box Component x Displays fire safety and environmental monitoring status.
Fire Status Box Component x Displays fire safety and environmental monitoring status.
import { FireStatusBox } from "@tetherto/mdk-react-devkit";| Prop | Status | Type | Default | Description |
|---|---|---|---|---|
data | Optional | { smokeDetector: string | number; waterIngressDetector: string | number; coolingFanStatus: string | number; } | undefined | — | Device data |
Usage
Safety-status card for a MicroBT container showing smoke detector, water-ingress detector, and cooling-fan status readings.
Example
import { FireStatusBox } from '@tetherto/mdk-react-devkit'export const FireStatusBoxExample = () => ( <div className="mdk-example-row"> <FireStatusBox data={{ smokeDetector: 0, waterIngressDetector: 0, coolingFanStatus: 1 }} /> </div>)ExplorerDetail
Per-type Explorer detail panel. Reads the selection the `useExplorerSelection` bridge writes into `devicesStore` and composes the matching cards: - **contain…
GaugeChartComponent
Single-needle gauge chart used inside container settings for thresholded percentage values. Displays a value as a gauge/speedometer chart with label and unit.