Tut (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== How to activate /dev/ttyS0 on Raspberry Pi == 1. Disable tty console (ask google, or use raspi-config) 2. Add pi to dialout group <pre>sudo usermod -a -G dial…“) |
K (Kategorie) |
||
| (2 dazwischenliegende Versionen von einem anderen Benutzer werden nicht angezeigt) | |||
| Zeile 6: | Zeile 6: | ||
3. Make link to ttyACM0 | 3. Make link to ttyACM0 | ||
| − | <pre> | + | <pre>cd /dev |
| − | cd /dev | + | sudo ln ttyAMA0 ttyS0 |
| − | sudo ln | + | |
</pre> | </pre> | ||
| + | |||
| + | 4. Optional: Install terminals | ||
| + | <pre>sudo apt-get install minicom cutecom</pre> | ||
| + | |||
| + | [[Kategorie:Raspberry Pi]] | ||
Aktuelle Version vom 2. November 2015, 21:28 Uhr
How to activate /dev/ttyS0 on Raspberry Pi
1. Disable tty console (ask google, or use raspi-config)
2. Add pi to dialout group
sudo usermod -a -G dialout pi
3. Make link to ttyACM0
cd /dev sudo ln ttyAMA0 ttyS0
4. Optional: Install terminals
sudo apt-get install minicom cutecom