Arduino Nano
model: Arduino Nano
back to microcontrollers page.
History / work log
2021-09-12: I re-created this page on my self-hosted web server.
2014-11-24: testing an Arduino Nano v3.0 compatible which I bought from FastTech (SKU 1001002) the label on the packaging reads "01112". It comes with a blue USB to mini-B usb cable. When connected to my Linux laptop, the blue LED lights up, and the white LED blinks.
tingo@kg-u35jc:~$ lsb_release -a LSB Version: core-2.0-amd64:core-2.0-noarch:core-3.0-amd64:core-3.0-noarch:core-3.1-amd64:core-3.1-noarch:core-3.2-amd64:core-3.2-noarch:core-4.0-amd64:core-4.0-noarch:cxx-3.0-amd64:cxx-3.0-noarch:cxx-3.1-amd64:cxx-3.1-noarch:cxx-3.2-amd64:cxx-3.2-noarch:cxx-4.0-amd64:cxx-4.0-noarch:desktop-3.1-amd64:desktop-3.1-noarch:desktop-3.2-amd64:desktop-3.2-noarch:desktop-4.0-amd64:desktop-4.0-noarch:graphics-2.0-amd64:graphics-2.0-noarch:graphics-3.0-amd64:graphics-3.0-noarch:graphics-3.1-amd64:graphics-3.1-noarch:graphics-3.2-amd64:graphics-3.2-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-3.2-amd64:printing-3.2-noarch:printing-4.0-amd64:printing-4.0-noarch:qt4-3.1-amd64:qt4-3.1-noarch Distributor ID: Ubuntu Description: Ubuntu 12.04.5 LTS Release: 12.04 Codename: precise tingo@kg-u35jc:~$ uname -a Linux kg-u35jc 3.2.0-70-generic #105-Ubuntu SMP Wed Sep 24 19:49:16 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
in /var/log/messages it shows up as:
Nov 24 22:26:30 kg-u35jc kernel: [948213.857291] usb 2-1.3: new full-speed USB device number 10 using ehci_hcd Nov 24 22:26:30 kg-u35jc mtp-probe: checking bus 2, device 10: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3" Nov 24 22:26:30 kg-u35jc kernel: [948214.379627] ftdi_sio 2-1.3:1.0: FTDI USB Serial Device converter detected Nov 24 22:26:30 kg-u35jc kernel: [948214.379693] usb 2-1.3: Detected FT232RL Nov 24 22:26:30 kg-u35jc kernel: [948214.379698] usb 2-1.3: Number of endpoints 2 Nov 24 22:26:30 kg-u35jc mtp-probe: bus: 2, device: 10 was not an MTP device Nov 24 22:26:30 kg-u35jc kernel: [948214.379702] usb 2-1.3: Endpoint 1 MaxPacketSize 64 Nov 24 22:26:30 kg-u35jc kernel: [948214.379706] usb 2-1.3: Endpoint 2 MaxPacketSize 64 Nov 24 22:26:30 kg-u35jc kernel: [948214.379710] usb 2-1.3: Setting MaxPacketSize 64 Nov 24 22:26:30 kg-u35jc kernel: [948214.380553] usb 2-1.3: FTDI USB Serial Device converter now attached to ttyUSB0
Next, in Arduino IDE (1.0.5) I select "Arduino Nano w/ATmega328" from Tools, Board, and /dev/ttyUSB0 from Tools, Serial Port. I compile and upload my modified blink example. It works - test ok.