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 [`Networking::get_num_stored_beacons`](crate::Networking::get_num_stored_beacons) command.

crate::frame::parameters::frame!(
    0x0008,
    {},
    { num_beacons: u8 } => Networking(networking)::GetNumStoredBeacons,
    impl {
        impl Response {
            /// The number of stored beacons.
            #[must_use]
            pub const fn num_beacons(&self) -> u8 {
                self.num_beacons
            }
        }
    }
);