Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed provisional from MWO mode and control clusters #33548

Merged
merged 6 commits into from
May 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -3334,7 +3334,7 @@ cluster DishwasherAlarm = 93 {
}

/** Attributes and commands for selecting a mode from a list of supported options. */
provisional cluster MicrowaveOvenMode = 94 {
cluster MicrowaveOvenMode = 94 {
revision 1;

enum ModeTag : enum16 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ cluster GroupKeyManagement = 63 {
}

/** Attributes and commands for selecting a mode from a list of supported options. */
provisional cluster MicrowaveOvenMode = 94 {
cluster MicrowaveOvenMode = 94 {
revision 1;

enum ModeTag : enum16 {
Expand Down Expand Up @@ -1046,7 +1046,7 @@ provisional cluster MicrowaveOvenMode = 94 {
}

/** Attributes and commands for configuring the microwave oven control, and reporting cooking stats. */
provisional cluster MicrowaveOvenControl = 95 {
cluster MicrowaveOvenControl = 95 {
revision 1; // NOTE: Default/not specifically set

bitmap Feature : bitmap32 {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ limitations under the License.
<domain name="CHIP"/>


<cluster apiMaturity="provisional">
<cluster>
<name>Microwave Oven Control</name>
<domain>Appliances</domain>
<description>Attributes and commands for configuring the microwave oven control, and reporting cooking stats.</description>
Expand Down Expand Up @@ -47,8 +47,8 @@ limitations under the License.
<attribute side="server" code="0x0003" define="MIN_POWER" type="int8u" default="10" writable="false" optional="true">MinPower</attribute>
<attribute side="server" code="0x0004" define="MAX_POWER" type="int8u" default="100" writable="false" optional="true">MaxPower</attribute>
<attribute side="server" code="0x0005" define="POWER_STEP" type="int8u" default="10" writable="false" optional="true">PowerStep</attribute>
<attribute side="server" code="0x0006" define="SUPPORTED_WATTS" type="array" entryType="int16u" writable="false" optional="true">SupportedWatts</attribute>
<attribute side="server" code="0x0007" define="SELECTED_WATT_INDEX" type="int8u" writable="false" optional="true">SelectedWattIndex</attribute>
<attribute apiMaturity="provisional" side="server" code="0x0006" define="SUPPORTED_WATTS" type="array" entryType="int16u" writable="false" optional="true">SupportedWatts</attribute>
<attribute apiMaturity="provisional" side="server" code="0x0007" define="SELECTED_WATT_INDEX" type="int8u" writable="false" optional="true">SelectedWattIndex</attribute>
<attribute side="server" code="0x0008" define="WATT_RATING" type="int16u" writable="false" optional="true">WattRating</attribute>

<command source="client" code="0x00" name="SetCookingParameters" optional="false">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ limitations under the License.
<item value="0x4001" name="Defrost"/>
</enum>

<cluster apiMaturity="provisional">
<cluster>
<domain>General</domain>
<name>Microwave Oven Mode</name>
<code>0x005E</code>
Expand Down
4 changes: 2 additions & 2 deletions src/controller/data_model/controller-clusters.matter
Original file line number Diff line number Diff line change
Expand Up @@ -3526,7 +3526,7 @@ cluster DishwasherAlarm = 93 {
}

/** Attributes and commands for selecting a mode from a list of supported options. */
provisional cluster MicrowaveOvenMode = 94 {
cluster MicrowaveOvenMode = 94 {
revision 1;

enum ModeTag : enum16 {
Expand Down Expand Up @@ -3560,7 +3560,7 @@ provisional cluster MicrowaveOvenMode = 94 {
}

/** Attributes and commands for configuring the microwave oven control, and reporting cooking stats. */
provisional cluster MicrowaveOvenControl = 95 {
cluster MicrowaveOvenControl = 95 {
revision 1; // NOTE: Default/not specifically set

bitmap Feature : bitmap32 {
Expand Down
Loading