Arduino Diecimila
model: Arduino Diecimila
back to microcontrollers page.
history / work log
2021-09-12: I re-created this page on my self-hosted web server.
2014-11-24: Just testing an older Arduino Diecimila bought from Sparkfun. I'm using the blue usb cable that came with the Uno board. Connecting it to my linux laptop, the power LED lights, and a yellow LED (connected to pin 13) 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
and the Diecimila shows up in /var/log/messages as:
Nov 24 21:46:06 kg-u35jc kernel: [945791.236852] usb 2-1.3: new full-speed USB device number 8 using ehci_hcd Nov 24 21:46:06 kg-u35jc kernel: [945791.338097] ftdi_sio 2-1.3:1.0: FTDI USB Serial Device converter detected Nov 24 21:46:06 kg-u35jc kernel: [945791.338161] usb 2-1.3: Detected FT232RL Nov 24 21:46:06 kg-u35jc kernel: [945791.338166] usb 2-1.3: Number of endpoints 2 Nov 24 21:46:06 kg-u35jc kernel: [945791.338171] usb 2-1.3: Endpoint 1 MaxPacketSize 64 Nov 24 21:46:06 kg-u35jc kernel: [945791.338175] usb 2-1.3: Endpoint 2 MaxPacketSize 64 Nov 24 21:46:06 kg-u35jc kernel: [945791.338178] usb 2-1.3: Setting MaxPacketSize 64 Nov 24 21:46:06 kg-u35jc kernel: [945791.338594] usb 2-1.3: FTDI USB Serial Device converter now attached to ttyUSB0 Nov 24 21:46:06 kg-u35jc mtp-probe: checking bus 2, device 8: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3" Nov 24 21:46:06 kg-u35jc mtp-probe: bus: 2, device: 8 was not an MTP device
good. In the Arduino IDE (1.0.5) I select (from Tools, Board) Arduino Diecimila and (from Tools, Serial Port) /dev/ttyUSB0. then I compile and upload my modified blink program again. It works!