@@ -22,6 +22,74 @@ Or relevant sources pages, to get started head to:
22
22
23
23
## Quickstart
24
24
25
+ The fastest (less than 20min) way to build z-wave-protocol-controller from scratch
26
+ is to delegate all tasks to docker.
27
+
28
+ This one-liner will do download latest release, setup environment, build, test, package...:
29
+
30
+ ``` sh
31
+ docker build https://github.com/SiliconLabsSoftware/z-wave-protocol-controller.git#ver_1.7.0
32
+ ```
33
+
34
+ Alternatively, it can also build from sources, and checked using:
35
+
36
+ ``` sh
37
+ git clone https://github.com/SiliconLabsSoftware/z-wave-protocol-controller
38
+ cd z-wave-protocol-controller
39
+ docker build --tag z-wave-protocol-controller:main .
40
+ docker run --tag z-wave-protocol-controller:main
41
+ ```
42
+
43
+ Power users might prefer to directly work on a native GNU/Linux environment,
44
+ and look at [ ./helper.mk] ( helper.mk ) script that details all the needed steps
45
+ to setup system and before using CMake.
46
+
47
+ At the moment stable version of Debian is supported,
48
+ so it should work also in relatives projects (Ubuntu, RaspiOS, WSL2 etc)
49
+ and should be easy to adapt to other distributions.
50
+
51
+ ``` sh
52
+ ./helper.mk help
53
+ ./helper.mk setup # To setup developer system (once)
54
+ ./helper.mk VERBOSE=1 # Default build tasks verbosely (depends on setup)"
55
+ ./helper.mk run # Run entry-point application
56
+ ```
57
+
58
+ It should print zpc's help.
59
+
60
+ To use it, a Silicon Labs' Z-Wave NCP should be plugged in USB port
61
+ to verify you can check firmware version:
62
+
63
+ ``` sh
64
+ serial=$( ls /dev/serial/by-id/usb-Silicon_Labs* | head -n1)
65
+ ./helper.mk run run_args=" --zpc.serial=${serial} --zpc.ncp_version"
66
+ # <i> [zpc_ncp_update] chip_serial_api_version: 7.23.1
67
+ ```
68
+
69
+ Let's interact with the inbuilt shell of zpc:
70
+
71
+ ``` sh
72
+ ./helper.mk run run_args=" --zpc.serial=${serial} "
73
+ ZPC> help
74
+ ==================================================
75
+ Unify Command line interface Help:
76
+ ==================================================
77
+ (...)
78
+ exit :Exit the application
79
+ (...)
80
+ zwave_home_id Print Z-Wave Home ID
81
+ (...)
82
+ zwave_add_node :Add a Z-Wave node to the network
83
+ (...)
84
+ zwave_set_default Reset Z-Wave network
85
+ (...)
86
+ ZPC> zwave_home_id
87
+ Z-Wave Home ID:
88
+ 1BADC0DE
89
+ ZPC> zwave_add_node
90
+ (...)
91
+ ```
92
+
25
93
26
94
## Contributing
27
95
0 commit comments