Working sound setup for raspis
This commit is contained in:
32
roles/pi-knxd/README
Normal file
32
roles/pi-knxd/README
Normal file
@@ -0,0 +1,32 @@
|
||||
Infos zum Stick
|
||||
http://busware.de/tiki-index.php?page=TUL
|
||||
|
||||
Blog mit Tutorial:
|
||||
https://www.meintechblog.de/2018/07/tul-stick-als-knx-ip-gateway-auf-dem-raspberry-pi-einrichten-mit-knxd/
|
||||
|
||||
|
||||
Programmieren
|
||||
--------------
|
||||
apt-get -y install dfu-programmer
|
||||
|
||||
Beim Einstecken des Sticks programmiertaste auf unterseite gedrueckt halten
|
||||
|
||||
sudo dfu-programmer atmega32u4 erase && sudo dfu-programmer atmega32u4 flash TPUARTtransparent.hex && sudo dfu-programmer atmega32u4 reset && sudo reboot
|
||||
|
||||
|
||||
|
||||
udev-rules
|
||||
----------
|
||||
|
||||
udevadm info -a -n /dev/ttyACM0 | grep '{idProduct}' | head -n1
|
||||
udevadm info -a -n /dev/ttyACM0 | grep '{idVendor}' | head -n1
|
||||
udevadm info -a -n /dev/ttyACM0 | grep '{serial}' | head -n1
|
||||
|
||||
# my KNX stick
|
||||
SUBSYSTEM=="tty", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="204b", ATTRS{serial}=="8543934393935171A0B1", SYMLINK+="ttyKNX"
|
||||
|
||||
# z-wave stick
|
||||
SUBSYSTEM=="tty", ATTRS{idVendor}=="0658", ATTRS{idProduct}=="0200", SYMLINK+="ttyZWave"
|
||||
|
||||
# HomeMatic stick (for fhem)
|
||||
SUBSYSTEM=="tty", ATTRS{idVendor}=="03eb", ATTRS{idProduct}=="204b", ATTRS{product}=="CUL868", SYMLINK+="ttyHomeMatic"
|
||||
Reference in New Issue
Block a user