Skip to content

Commit 511eae8

Browse files
restyled-commitspakls
authored andcommitted
Restyled by prettier-markdown
1 parent 845bca2 commit 511eae8

File tree

4 files changed

+32
-34
lines changed

4 files changed

+32
-34
lines changed

examples/light-switch-app/genio/README.md

+17-18
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,14 @@ An example showing the use of CHIP on the MediaTek `Genio` MT793X.
1919

2020
## Introduction
2121

22-
The `Genio` (MT793X) light switch example provides a baseline demonstration of a on-off
23-
light switch device, built using CHIP and the MediaTek `Genio` SDK. It can be
24-
controlled by a Chip controller over Wi-Fi network..
22+
The `Genio` (MT793X) light switch example provides a baseline demonstration of a
23+
on-off light switch device, built using CHIP and the MediaTek `Genio` SDK. It
24+
can be controlled by a Chip controller over Wi-Fi network..
2525

26-
The `Genio` device can be commissioned over Bluetooth Low Energy where the device
27-
and the Chip controller will exchange security information with the Rendez-vous
28-
procedure. Network credentials are then provided to the `Genio` device which will
29-
then join the network.
26+
The `Genio` device can be commissioned over Bluetooth Low Energy where the
27+
device and the Chip controller will exchange security information with the
28+
Rendez-vous procedure. Network credentials are then provided to the `Genio`
29+
device which will then join the network.
3030

3131
The light switch example is intended to serve both as a means to explore the
3232
workings of CHIP as well as a template for creating real products based on the
@@ -96,18 +96,18 @@ MediaTek platform.
9696
[CHIP
9797
Tool]](https://github.com/project-chip/connectedhomeip/blob/master/docs/guides/chip_tool_guide.md)
9898

99-
- First of all, you have to commission with the light-switch-app (nodeID 1) and
100-
the lighting-app (nodeID 2) with the CHIP tool by following commands.
99+
- First of all, you have to commission with the light-switch-app (nodeID 1)
100+
and the lighting-app (nodeID 2) with the CHIP tool by following commands.
101101

102102
```
103103
chip-tool pairing ble-wifi 1 my-ap myappassword 20202021 3840
104104
105105
chip-tool pairing ble-wifi 2 my-ap myappassword 20202021 3840
106106
```
107107
108-
- Next, you have to configure the ACL in the lighting-app device to allow access
109-
from switch device and chip-tool, and binding the lighting-app device to the
110-
light-switch-app device by following commands.
108+
- Next, you have to configure the ACL in the lighting-app device to allow
109+
access from switch device and chip-tool, and binding the lighting-app device
110+
to the light-switch-app device by following commands.
111111
112112
```
113113
chip-tool accesscontrol write acl '[{"fabricIndex": 1, "privilege": 5, "authMode": 2, "subjects": [112233], "targets": null },{"fabricIndex": 1, "privilege": 5, "authMode": 2, "subjects": [1], "targets": null }]' 2 0
@@ -116,8 +116,8 @@ MediaTek platform.
116116
117117
```
118118
119-
- Once all setup successfully, you can control the lighting-app device through the
120-
Matter Shell on the light-switch-app device.
119+
- Once all setup successfully, you can control the lighting-app device through
120+
the Matter Shell on the light-switch-app device.
121121
122122
```
123123
> switch onoff on
@@ -127,7 +127,6 @@ MediaTek platform.
127127
### Notes
128128
129129
- Depending on your network settings your router might not provide native ipv6
130-
addresses to your devices (Border router / PC). If this is the case, you
131-
need to add a static ipv6 addresses on both device and then an ipv6 route to
132-
the border router on your PC
133-
130+
addresses to your devices (Border router / PC). If this is the case, you
131+
need to add a static ipv6 addresses on both device and then an ipv6 route to
132+
the border router on your PC

examples/lighting-app/genio/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,6 @@ MediaTek platform.
117117
### Notes
118118
119119
- Depending on your network settings your router might not provide native ipv6
120-
addresses to your devices (Border router / PC). If this is the case, you
121-
need to add a static ipv6 addresses on both device and then an ipv6 route to
122-
the border router on your PC
120+
addresses to your devices (Border router / PC). If this is the case, you
121+
need to add a static ipv6 addresses on both device and then an ipv6 route to
122+
the border router on your PC

examples/lock-app/genio/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ An example showing the use of CHIP on the MediaTek `Genio` MT793X.
1919

2020
## Introduction
2121

22-
The `Genio` (MT793X) lock example provides a baseline demonstration of a
23-
door lock control device, built using CHIP and the MediaTek `Genio` SDK. It can be
22+
The `Genio` (MT793X) lock example provides a baseline demonstration of a door
23+
lock control device, built using CHIP and the MediaTek `Genio` SDK. It can be
2424
controlled by a Chip controller over Wi-Fi network.
2525

2626
The `Genio` device can be commissioned over Bluetooth Low Energy where the

examples/thermostat/genio/README.md

+10-11
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ The `Genio` (MT793X) thermostat example provides a baseline demonstration of a
2323
thermostat device, built using CHIP and the MediaTek `Genio` SDK. It can be
2424
controlled by a Chip controller over Wi-Fi network..
2525

26-
The `Genio` device can be commissioned over Bluetooth Low Energy where the device
27-
and the Chip controller will exchange security information with the Rendez-vous
28-
procedure. Network credentials are then provided to the `Genio` device which will
29-
then join the network.
26+
The `Genio` device can be commissioned over Bluetooth Low Energy where the
27+
device and the Chip controller will exchange security information with the
28+
Rendez-vous procedure. Network credentials are then provided to the `Genio`
29+
device which will then join the network.
3030

31-
The thermostat example is intended to serve both as a means to explore the workings
32-
of CHIP as well as a template for creating real products based on the MediaTek
33-
platform.
31+
The thermostat example is intended to serve both as a means to explore the
32+
workings of CHIP as well as a template for creating real products based on the
33+
MediaTek platform.
3434

3535
<a name="building"></a>
3636

@@ -103,7 +103,6 @@ platform.
103103
### Notes
104104
105105
- Depending on your network settings your router might not provide native ipv6
106-
addresses to your devices (Border router / PC). If this is the case, you
107-
need to add a static ipv6 addresses on both device and then an ipv6 route to
108-
the border router on your PC
109-
106+
addresses to your devices (Border router / PC). If this is the case, you
107+
need to add a static ipv6 addresses on both device and then an ipv6 route to
108+
the border router on your PC

0 commit comments

Comments
 (0)