After some advice on here, Ive just purchased two of these;
The aim being to flash them with Router firmware and extend my zigbee network into another building.
However, when following various guides online, and specifically youtube, I cant get it completed.
I can plug the dongle into my laptop, and it shows up in device manager (windows 10). Initially it showed up with a yellow warning, so I downloaded the CP210x USB to UART Bridge VCP Drivers from Silicon Labs. It now shows up on COM5
I then installed 3 python scripts;
Backup Dongle
python -m pip install --upgrade pip
pip install wheel pyserial intelhex python-magic
pip install zigpy-znp
All good. However, when I then try to backup the dongle, which I guess is the first form of communication, it all falls over and I just get a timeout error;
python -m zigpy_znp.tools.nvram_read COM5 -o nvram_backup.json
results in
raise TimeoutError from exc_val
TimeoutError
Things I have done to test;
I found this online tool, which doesnt flash with the router firmware I want to use, but I thought would be usefulf to test if any communication could happen;
It came back with an error and couldnt connect to the dongle.
As I bought two, Ive also tried everything with both dongles, so I assume I can rule-out broken hardware. The two dongles show up on different com ports (one com6 one com5), and Ive tried adjusting the script accordingly.
I also read that there can be issues with the latest version of the vcp drivers, so I completly uninstalled, and downgraded to an older version. The outcome was the same.
Does anyone know how I might be able to flash thee with the router firmware?
Thanks guys.