Install busware SCC board on Raspberry Pi
To use busware SCC boards (see busware shop) with FHEM you have to: Install FHEM (see my earlier blogpost) If not already root
1 |
$> sudo su - |
Remove all reverences of the device ttyAMA0 (/dev/ttyAMA0) from /etc/inittab and /boot/cmdline.txt (if you use a Banana Pi you should look for ttyS2)
1 |
$> nano /etc/inittab |
and replace
1 2 |
#Spawn a getty on Raspberry Pi serial line T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100 |
with
1 2 |
#Spawn a getty on Raspberry Pi serial line #T0:23:respawn:/sbin/getty -L ttyAMA0 115200 vt100 |
and
1 |
$> nano /boot/cmdline.txt |
and remove “console=ttyAMA0,115200” so […]