Skip to content

Commit 19239d9

Browse files
authored
Create Add Websocket documentation README
1 parent 507ac8c commit 19239d9

File tree

1 file changed

+205
-0
lines changed

1 file changed

+205
-0
lines changed
+205
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,205 @@
1+
## Websocket documentation
2+
3+
This list is not intended to be complete, for a complete oversight see the client implementation.
4+
5+
## Websocket commands
6+
7+
Here are the most frequently used commands:
8+
9+
**Set WiFi credentials**
10+
11+
Inform the controller about the WiFi credentials it needs to send when commissioning a new device.
12+
13+
```json
14+
{
15+
"message_id": "1",
16+
"command": "set_wifi_credentials",
17+
"args": {
18+
"ssid": "wifi-name-here",
19+
"credentials": "wifi-password-here"
20+
}
21+
}
22+
```
23+
24+
**Set Thread dataset**
25+
26+
Inform the controller about the Thread credentials it needs to use when commissioning a new device.
27+
28+
```json
29+
{
30+
"message_id": "1",
31+
"command": "set_thread_dataset",
32+
"args": {
33+
"dataset": "put-credentials-here"
34+
}
35+
}
36+
```
37+
38+
**Commission with code**
39+
40+
Commission a new device. For WiFi or Thread based devices, the credentials need to be set upfront, otherwise, commissioning will fail. Supports both QR-code syntax (MT:...) and manual pairing code as string.
41+
The controller will use bluetooth for the commissioning of wireless devices. If the machine running the Python Matter Server controller lacks Bluetooth support, commissioning will only work for devices already connected to the network (by cable or another controller).
42+
43+
Matter QR-code
44+
```json
45+
{
46+
"message_id": "2",
47+
"command": "commission_with_code",
48+
"args": {
49+
"code": "MT:Y.ABCDEFG123456789"
50+
}
51+
}
52+
```
53+
54+
Manual pairing code
55+
```json
56+
{
57+
"message_id": "2",
58+
"command": "commission_with_code",
59+
"args": {
60+
"code": "35325335079",
61+
"network_only": true
62+
}
63+
}
64+
```
65+
66+
**Open Commissioning window**
67+
68+
Open a commissioning window to commission a device present on this controller to another.
69+
Returns code to use as discriminator.
70+
71+
```json
72+
{
73+
"message_id": "2",
74+
"command": "open_commissioning_window",
75+
"args": {
76+
"node_id": 1
77+
}
78+
}
79+
```
80+
81+
**Get Nodes**
82+
83+
Get all nodes already commissioned on the controller.
84+
85+
```json
86+
{
87+
"message_id": "2",
88+
"command": "get_nodes"
89+
}
90+
```
91+
92+
**Get Node**
93+
94+
Get info of a single Node.
95+
96+
```json
97+
{
98+
"message_id": "2",
99+
"command": "get_node",
100+
"args": {
101+
"node_id": 1
102+
}
103+
}
104+
```
105+
106+
**Start listening**
107+
108+
When the start_listening command is issued, the server will dump all existing nodes. From that moment on all events (including node attribute changes) will be forwarded.
109+
110+
```json
111+
{
112+
"message_id": "3",
113+
"command": "start_listening"
114+
}
115+
```
116+
117+
**Read an attribute**
118+
119+
Here is an example of reading `OnOff` attribute on a switch (OnOff cluster)
120+
121+
```json
122+
{
123+
"message_id": "read",
124+
"command": "read_attribute",
125+
"args": {
126+
"node_id": 1,
127+
"attribute_path":"1/6/0"
128+
}
129+
}
130+
```
131+
132+
**Write an attribute**
133+
134+
Here is an example of writing `OnTime` attribute on a switch (OnOff cluster)
135+
136+
```json
137+
{
138+
"message_id": "write",
139+
"command":"write_attribute",
140+
"args":{
141+
"node_id":1,
142+
"attribute_path":"1/6/16385",
143+
"value": 10
144+
}
145+
}
146+
```
147+
148+
**Send a command**
149+
150+
Here is an example of turning on a switch (OnOff cluster)
151+
152+
```json
153+
{
154+
"message_id": "example",
155+
"command": "device_command",
156+
"args": {
157+
"endpoint_id": 1,
158+
"node_id": 1,
159+
"payload": {},
160+
"cluster_id": 6,
161+
"command_name": "On"
162+
}
163+
}
164+
```
165+
166+
**Python script to send a command**
167+
168+
Because we use the datamodels of the Matter SDK, this is a little bit more involved.
169+
Here is an example of turning on a switch:
170+
171+
```python
172+
import json
173+
174+
# Import the CHIP clusters
175+
from chip.clusters import Objects as clusters
176+
177+
# Import the ability to turn objects into dictionaries, and vice-versa
178+
from matter_server.common.helpers.util import dataclass_from_dict,dataclass_to_dict
179+
180+
command = clusters.OnOff.Commands.On()
181+
payload = dataclass_to_dict(command)
182+
183+
184+
message = {
185+
"message_id": "example",
186+
"command": "device_command",
187+
"args": {
188+
"endpoint_id": 1,
189+
"node_id": 1,
190+
"payload": payload,
191+
"cluster_id": command.cluster_id,
192+
"command_name": "On"
193+
}
194+
}
195+
196+
print(json.dumps(message, indent=2))
197+
```
198+
You can also provide parameters for the cluster commands. Here's how to change the brightness for example:
199+
200+
```python
201+
command = clusters.LevelControl.Commands.MoveToLevelWithOnOff(
202+
level=int(value), # provide a percentage
203+
transitionTime=0, # in seconds
204+
)
205+
```

0 commit comments

Comments
 (0)