@@ -22,6 +22,77 @@ 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
+
45
+ The project is CMake based,
46
+ to prepare the environment, have a look at [ ./helper.mk] ( helper.mk ) 'details
47
+ for needed steps to setup developer system before using CMake normally.
48
+
49
+ At the moment stable version of Debian is supported,
50
+ so it should work also in relatives projects (Ubuntu, RaspiOS, WSL2 etc)
51
+ and should be easy to adapt to other distributions.
52
+
53
+ ``` sh
54
+ ./helper.mk help
55
+ ./helper.mk setup # To setup developer system (once)
56
+ ./helper.mk VERBOSE=1 # Default build tasks verbosely (depends on setup)"
57
+ ./helper.mk run # Run entry-point application
58
+ ```
59
+
60
+ It should print zpc's help.
61
+
62
+ To use it, a Silicon Labs' Z-Wave NCP should be plugged in USB port
63
+ to verify you can check firmware version:
64
+
65
+ ``` sh
66
+ serial=$( ls /dev/serial/by-id/usb-Silicon_Labs* | head -n1)
67
+ ./helper.mk run run_args=" --zpc.serial=${serial} --zpc.ncp_version"
68
+ # <i> [zpc_ncp_update] chip_serial_api_version: 7.23.1
69
+ ```
70
+
71
+ Let's interact with the inbuilt shell of zpc:
72
+
73
+ ``` sh
74
+ mapdir=" applications/zpc/components/dotdot_mapper/rule"
75
+ ./helper.mk run run_args=" --zpc.serial=${serial} --mapdir=" ${mapdir} "
76
+ ZPC>help
77
+ ==================================================
78
+ Unify Command line interface Help:
79
+ ==================================================
80
+ (...)
81
+ exit :Exit the application
82
+ (...)
83
+ zwave_home_id Print Z-Wave Home ID
84
+ (...)
85
+ zwave_add_node :Add a Z-Wave node to the network
86
+ (...)
87
+ zwave_set_default Reset Z-Wave network
88
+ (...)
89
+ ZPC> zwave_home_id
90
+ Z-Wave Home ID:
91
+ 1BADC0DE
92
+ ZPC> zwave_add_node
93
+ (...)
94
+ ` ` `
95
+
25
96
26
97
# # Contributing
27
98
0 commit comments