Skip to content

Commit

Permalink
Add new vendor id for V4^
Browse files Browse the repository at this point in the history
Closes  #8
  • Loading branch information
joshuarost committed May 22, 2024
1 parent b4e4ea9 commit 1996ae4
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,15 @@ To use the CLI as a user you first have to create the USB rule
cd /etc/udev/rules.d/

# create file with the rule
vi 99-clewareampel.rules
touch 99-clewareampel.rules
```
**Content**
**Rule content**
```bash
SUBSYSTEM=="usb", ATTR{idVendor}=="0d50", ATTR{idProduct}=="0008", MODE="666"
# V4^ (2023-10)
echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="0d50", ATTR{idProduct}=="0008", MODE="660", GROUP="traffic-light"' > 99-clewareampel.rules

# V3 and lower
echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="0d50", ATTR{idProduct}=="0030", MODE="660", GROUP="traffic-light"' > 99-clewareampel.rules
```

## Help
Expand Down

0 comments on commit 1996ae4

Please sign in to comment.