Arduino: Cek sambungan USB ke laptop
Revision as of 14:22, 16 November 2015 by Onnowpurbo (talk | contribs)
Untuk mengetahui apakah Arduino yang kita miliki tersambung dengan baik dengan USB di laptop
- Sambungkan Power Supply ke Arduino
- Pastikan lampu "ON" nyala
- Sambungkan USB ke laptop
Di laptop ketik
lsusb
Akan keluar, salah satunya
Bus 003 Device 003: ID 2341:0043 Arduino SA Uno R3 (CDC ACM)
Berarti Arduino terdeteksi
Mengajak Arduino Bicara melalui TTY
Konfigurasi USB
stty -F /dev/ttyUSB0 cs8 115200 ignbrk -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echoke noflsh -ixon -crtscts
Konfigurasi /dev/ttyACM0
stty -F /dev/ttyACM0 cs8 115200 ignbrk -brkint -icrnl -imaxbel -opost -onlcr -isig -icanon -iexten -echo -echoe -echok -echoctl -echoke noflsh -ixon -crtscts
Bicara dengan Arduino
echo "Hello Arduino" > /dev/ttyACM0
Membaca informasi dari Arduino
tail -f /dev/ttyACM0
Cek buffering di Arduino
echo -n "Hello" > /dev/ttyACM0