08d5c01232c1014048857b6ae420150b3b4506f0
[platform/upstream/connectedhomeip.git] / examples / pigweed-app / nrf5 / README.md
1 # Pigweed example app
2
3 This example app exercises functionalities in third_party/pigweed, to see what
4 is needed for integrating Pigweed to CHIP, as well as a precursor to CHIP
5 functionalities like on-device testing.
6
7 ## Currently implemented features
8
9 ### Echo RPC:
10
11 ```
12 python -m pw_hdlc_lite.rpc_console --device /dev/ttyACM0 -b 115200 -p $CHIP_ROOT/third_party/pigweed/repo/pw_rpc/pw_rpc_protos/echo.proto -o /tmp/pw_rpc.out
13 ```
14
15 will start an interactive python shell where Echo RPC can be invoked as
16
17 ```
18 rpcs.pw.rpc.EchoService.Echo(msg="hi")
19 ```