ezsp 6.0.1

Ember ZNet Serial Protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Parameters for the [`Mfglib::get_channel`](crate::Mfglib::get_channel) command.

crate::frame::parameters::frame!(
    0x008B,
    {},
    { channel: u8 } => MfgLib(mfglib)::GetChannel,
    impl {
        impl Response {
            /// Returns the channel.
            #[must_use]
            pub const fn channel(&self) -> u8 {
                self.channel
            }
        }
    }
);