Skip to content

Commit

Permalink
Clarify necessary baud rate addition for 115K
Browse files Browse the repository at this point in the history
To address walthowd#30 for those changing to the 115K firmware.
The baud rate for home assistant is not listed there and needs to be added.
This PR just clarifies the format and where it should be added.
Cheers!
  • Loading branch information
sreknob authored Nov 2, 2021
1 parent d6a512c commit 58634c7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,19 @@ Found zigbee port at /dev/ttyUSB1 running 5.4.1-194
| Nortek GoControl QuickStick Combo Model HUSBZB-1 | ncp-uart-sw-6.7.8.ebl |
| Telegesis ETRX357USB adapter | em357-v678-ncp-uart-sw.ebl |

For advanced users - An alternative 115200 bps firmware image is available for HUSBZB-1, `ncp-uart-sw-6.7.8-115k.ebl`. This provides a faster pathway to the adapter but requires that new Home Assistant user manually input the serial path, radio type (EZSP) and bauddate when adding ZHA. Existing Home Assistant users will have to backup and edit the `.storage/.core.config_entries` file and update the listed baud rate.
For advanced users - An alternative 115200 bps firmware image is available for HUSBZB-1, `ncp-uart-sw-6.7.8-115k.ebl`. This provides a faster pathway to the adapter but requires that new Home Assistant user manually input the serial path, radio type (EZSP) and bauddate when adding ZHA. Existing Home Assistant users will have to backup and edit the `.storage/.core.config_entries` file and add the listed baud rate under the zha entry using the following format:

```yaml
"domain": "zha",
"title": "/dev/ttyUSB1",
"data": {
"device": {
"baudrate": 115200,
"path": "/dev/ttyUSB1"
},
"radio_type": "ezsp"
},
```

As of March 2021, hardware flow control has been added to bellows/zigpy - Only flash any of the images in the `hw-flow-control` folder unless you know what you are doing.

Expand Down

0 comments on commit 58634c7

Please sign in to comment.