Page 1 of 1

Error on Wiki page for USB PERSISTENT BINDING

Posted: Wednesday 18 October 2017 15:37
by calimero
Hi,

I was trying to get my USB device settings persistent, with no luck until I saw a small typo

WiKi page: https://www.domoticz.com/wiki/Assign_fi ... o_USB_port

There is a mention of

Code: Select all

SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTR{serial}=="P11234567",  SYMLINK+="ttyUSB_P1"
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTR{serial}=="RFX1234567",  SYMLINK+="ttyUSB_RFX"
This should be

Code: Select all

SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTRS{serial}=="P11234567",  SYMLINK+="ttyUSB_P1"
SUBSYSTEM=="tty", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTRS{serial}=="RFX1234567",  SYMLINK+="ttyUSB_RFX"
Please notice the small difference for the serial: must be ATTRS not ATTR.
Fixing this made thing work for me.

Re: Error on Wiki page for USB PERSISTENT BINDING

Posted: Friday 20 October 2017 18:58
by SweetPants
If you login to the Wiki with your domoticz account you can change/correct the Wiki yourself and contribute to the project