main index This page lists my Arduino experiments and projects.

Disclaimer:

Quick-FAQ:


Arduino specifications

Notes:


My Arduino experiments:

My Arduino ongoing projects:

My Arduino completed projects:

My Arduino hardware:


Quick notes

TWI (2-wire interface) only requires two bidirectional data pins (plus a GND pin and a VCC pin, but these are not "data" pins); as of Atmel ATmega168 datasheet (page 82):

Note: Arduino's "analog" pins are actually multipurpose pins (i.e., if you don't need neither analog nor TWI, they can work as common digital GPIO pins).

SPI (serial port interface) uses 3 output data pins and 1 input data pin when in "master" mode (or 3 input and 1 output when in "slave" mode):

Sad note: on pin "13" on the Arduino Diecimila there is the SMD LED which we used for software debugging. When using SPI, that LED blinks on SPI clock.