|
| 1 | +--- |
| 2 | +orphan: true |
| 3 | +--- |
| 4 | + |
| 5 | +# CHEF devices |
| 6 | + |
| 7 | +Device definitions reside in `examples/chef/devices` as .zap and .matter files. |
| 8 | + |
| 9 | +Generally you need to follow these steps to use a new device: |
| 10 | + |
| 11 | +- Create a zap/matter configuration (forking an existing one is the easiest) |
| 12 | +- Rename to a final/stable name |
| 13 | +- Test |
| 14 | + |
| 15 | +## Creating a new zap configuration |
| 16 | + |
| 17 | +The easiest way to get started is using an existing configuration. A template is |
| 18 | +provided in `./examples/chef/devices/template.zap`. |
| 19 | + |
| 20 | +To open the zap GUI for this device, run: |
| 21 | + |
| 22 | +``` |
| 23 | +./examples/chef/chef.py -g -d template |
| 24 | +``` |
| 25 | + |
| 26 | +### Editing the zap configuration: |
| 27 | + |
| 28 | +Using the ZAP UI, make the following changes: |
| 29 | + |
| 30 | +- Leave Endpoint 0 unchanged |
| 31 | +- Click the Edit/Pencil icon to change Endpoint 1 |
| 32 | + () |
| 33 | + - Update the device type to the new device and click "save" |
| 34 | + () |
| 35 | + - In the "Filter" section select "Enabled Clusters" and validate what |
| 36 | + clusters are set |
| 37 | + () |
| 38 | + - Ensure clusters for the device type are enabled (this is generally |
| 39 | + automatically the case) |
| 40 | + - Click the gear icon on the cluster to further edit enabled |
| 41 | + attributes and commands |
| 42 | + - You can add additional optional clusters if needed (disable |
| 43 | + filtering and use the search option) |
| 44 | + |
| 45 | +Once all edits are done, click "File" => "Save as..." to save it under a **NEW** |
| 46 | +name inside `examples/chef/devices/`. |
| 47 | + |
| 48 | +NOTE: make sure you save under `examples/chef/devices` since internal paths |
| 49 | +inside the saved file will be relative to the save location (it cannot simply be |
| 50 | +moved later without manual editing). |
| 51 | + |
| 52 | +It is suggested to name this `rootnode_<device_type_name>.zap` (e.g., |
| 53 | +`rootnode_smokecoalarm.zap` for Matter Smoke CO Alarm device type) |
| 54 | + |
| 55 | +## Establishing a "final name" |
| 56 | + |
| 57 | +General naming convention for chef is `<ep0>_<ep1>_<hash>` where `<epN>` is the |
| 58 | +type of endpoint (and `<ep0>` is almost always `rootnode`). |
| 59 | + |
| 60 | +The hash is a one-time uniquely generated identifier to allow separate |
| 61 | +configurations for the same devices (e.g different features enabled). |
| 62 | + |
| 63 | +You can read more in `examples/chef/sample_app_util/README.md`, however the |
| 64 | +short version is that you can determine a recommended name using: |
| 65 | + |
| 66 | +``` |
| 67 | +./examples/chef/sample_app_util/sample_app_util.py zap --generate-name <saved_zap_file_name> |
| 68 | +``` |
| 69 | + |
| 70 | +and generally you want to just rename it via: |
| 71 | + |
| 72 | +``` |
| 73 | +./examples/chef/sample_app_util/sample_app_util.py zap --rename-file <saved_zap_file_name> |
| 74 | +``` |
| 75 | + |
| 76 | +## Running code generation (to generate .matter file) |
| 77 | + |
| 78 | +To generate the matter file for your target, run |
| 79 | + |
| 80 | +``` |
| 81 | +./scripts/tools/zap/generate.py <new_device_zap_name> |
| 82 | +``` |
| 83 | + |
| 84 | +This should generate the corresponding `.matter` file for the zap file you |
| 85 | +created. |
| 86 | + |
| 87 | +## Testing |
| 88 | + |
| 89 | +Basic device availability should show when running: |
| 90 | + |
| 91 | +``` |
| 92 | +./examples/chef/chef.py -h | less |
| 93 | +``` |
| 94 | + |
| 95 | +### Compilation |
| 96 | + |
| 97 | +This example uses `rootnode_contactsensor_lFAGG1bfRO` for commands. Substitute |
| 98 | +your own device for testing newly created devices. |
| 99 | + |
| 100 | +``` |
| 101 | +./examples/chef/chef.py \ |
| 102 | + -t linux \ |
| 103 | + -d rootnode_contactsensor_lFAGG1bfRO \ |
| 104 | + -b |
| 105 | +``` |
| 106 | + |
| 107 | +Where options used are: |
| 108 | + |
| 109 | +- `-t` specifies the target platform |
| 110 | +- `-d` specifies the device to build |
| 111 | +- `-b` asks for build to be run |
| 112 | + |
| 113 | +### Execution |
| 114 | + |
| 115 | +Build will be available in |
| 116 | +`examples/chef/linux/out/rootnode_contactsensor_lFAGG1bfRO` (path will vary |
| 117 | +based on platform and device being built) |
0 commit comments