matc 0.1.2

Matter protocol library (controller side)
Documentation
//! Matter TLV encoders and decoders for Refrigerator Alarm Cluster
//! Cluster ID: 0x0057
//!
//! This file is automatically generated from RefrigeratorAlarm.xml



// Bitmap definitions

/// Alarm bitmap type
pub type Alarm = u8;

/// Constants for Alarm
pub mod alarm {
    /// The cabinet's door has been open for a vendor defined amount of time.
    pub const DOOR_OPEN: u8 = 0x01;
}

// Command encoders