-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathModeBaseOverrides.ts
More file actions
42 lines (37 loc) · 871 Bytes
/
ModeBaseOverrides.ts
File metadata and controls
42 lines (37 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/**
* @license
* Copyright 2022-2026 Matter.js Authors
* SPDX-License-Identifier: Apache-2.0
*/
import { LocalMatter } from "../local.js";
LocalMatter.children.push({
tag: "cluster",
name: "ModeBase",
children: [
{
tag: "datatype",
name: "ModeTagStruct",
children: [
{
tag: "field",
id: 1,
name: "Value",
type: "ModeTag",
},
],
},
{
tag: "command",
name: "ChangeToModeResponse",
id: 0x01,
children: [
{
tag: "field",
id: 0,
name: "Status",
type: "ModeChangeStatus",
},
],
},
],
});