Week Outline

  1. Wednesday: Global Class on Input Devices.
  2. Friday: Local Classes on Input Devices.
  3. Monday: Recitation on Machine Building.
  4. Wednesday: Global Review.

Global Class

Local Classes

Our local class this week consisted of experimenting with multiple input devices:

Button LED Circuit

We started with the above pictured simple circuit with a button and an LED.

Then, we moved onto a more complex version of it. We wanted to digitally read if the button was being pressed, so we hooked up the button to our Barduino:

Button Signal Circuit

So after we set the circuit up, we wrote the following code:

#define PIN 17

void setup () {
pinMode(PIN, INPUT);

Serial.begin(15200);
}

void loop () {
int reading = digitalRead(PIN);

Serial.println(reading);

delay(20);

}

We then sent the code to our Barduino using the Arduino IDE, and as you can see below, we could see when the button was being pushed via the serial monitor.

Transistor Circuit
Phototransistor Circuit
Analog Hall Magnetic Circuit
Magic Light Cup Modules Circuit

Assignments