Week 5
Running 4 servos off an arduino
Tom's notes about serial :: NB: you can reset the arduino this way (opening a serial connection)
A page that talks (very plainly) about basic programming concepts
ITP Sensor Wiki Reports A great resource for finding sensors of different types (presence, etc). Things like :
About solenoids from wikipedia
The toy piano circuit I mentioned in class
Our Arduino code from class ::
int analogPin = 0;
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.print(analogRead(analogPin)/4, BYTE);
delay(10);
}