ezsp 6.0.1

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

crate::frame::parameters::frame!(
    0x00E7,
    { enabled: bool },
    impl {
        impl Command {
            /// Creates command parameters.
            #[must_use]
            pub const fn new(enabled: bool) -> Self {
                Self { enabled }
            }
        }
    },
    {} => Wwah(wwah)::SetParentClassificationEnabled);