From dcf0ea63a6646fb32462d5a36f5cce7110bb3ef0 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Thu, 15 Feb 2018 10:33:47 +0100 Subject: README: Fix vendor/product ID format The format for vendor/product ID need to be prefixed by 0x. --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a3c297c..d72b6c0 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ So you have now: beagleboneblack-01: type: beaglebone-black uart: - idvendor: "0403" - idproduct: 6001 + idvendor: 0x0403 + idproduct: 0x6001 serial: AK04TU1X ``` @@ -108,8 +108,8 @@ So you have now: beagleboneblack-01: type: beaglebone-black uart: - idvendor: "0403" - idproduct: 6001 + idvendor: 0x0403 + idproduct: 0x6001 devpath: "1.5" ``` @@ -137,8 +137,8 @@ beagleboneblack, with FTDI (serial 1234567), connected to port 5 of an ACME power_off_command: /usr/local/bin/acme-cli -s 192.168.66.2 power_off 5 power_on_command: /usr/local/bin/acme-cli -s 192.168.66.2 power_on 5 uart: - idvendor: "0403" - idproduct: 6001 + idvendor: 0x0403 + idproduct: 0x6001 serial: 1234567 ``` -- cgit 1.2.3-korg