You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+38-2
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ mkdir $HOME/.chip-storage/
34
34
With the following command the server can be run directly from the source tree.
35
35
36
36
```
37
-
python3 -m chip_ws_server.__main__
37
+
python3 -m chip_ws_server
38
38
```
39
39
40
40
To test device communication or to commission devices the provided Python CHIP
@@ -54,7 +54,7 @@ The client does not need to be run in the Python CHIP Controller environment. It
54
54
can be run from the source tree using:
55
55
56
56
```
57
-
python3 -m chip_ws_server.__main__
57
+
python3 -m chip_ws_server
58
58
```
59
59
60
60
### Build and install
@@ -68,6 +68,42 @@ to this repository and install this project as follows:
68
68
pip install .
69
69
```
70
70
71
+
### Creating a test device
72
+
73
+
Instruction on how to create a test device can be found [here](https://nabucasa.github.io/matter-example-apps/).
74
+
75
+
### Commissioning a test device
76
+
77
+
Currently the easiest way to set up a test device is using the Python CHIP REPL. Start it by pointing it at the same storage location as the servier will run off:
0 commit comments