Annie Scalmanini Lab 2


Question 1:

a. What lines of code do you need to change to change the rate of blinking?

delay(1000);  

delay(1000);  

(the 1000 represents the amount of time that the LED is on and off, in milliseconds I think)

 

Se we would change the value in ( ) to change the rate

 

b. What circuit element do you need to add to protect the board and LED?
We definitely need a resistor in series with the LED to limit the amount of current across the LED

Question 2:

a. Which lines do you need to modify to correspond with your button and LED pins?
const int ledPin =  9;      // the number of the LED pin

const int buttonPin = 2;     // the number of the pushbutton pin


b. Modify the code or the circuit so that the LED lights only while the button is depressed. Include your code in your lab write-up.

/*
 Button

Turns on and off a light emitting diode(LED) connected to digital  
pin 9, when pressing a pushbutton attached to pin 2.


The circuit:
* LED attached from pin 9 to ground
* pushbutton attached to pin 2 from +5V
* 10K resistor attached to pin 2 from ground


// constants won't change. They're used here to set pin numbers:
const int buttonPin = 2;     // the number of the pushbutton pin
const int ledPin =  9;      // the number of the LED pin

// variables will change:
int buttonState = 0;         // variable for reading the pushbutton status

void setup() {
 // initialize the LED pin as an output:
 pinMode(ledPin, OUTPUT);      
 // initialize the pushbutton pin as an input:
 pinMode(buttonPin, INPUT);     
}

void loop(){
 // read the state of the pushbutton value:
 buttonState = digitalRead(buttonPin);

 // check if the pushbutton is pressed.
 // if it is, the buttonState is HIGH:
 if (buttonState == HIGH) {     
   // turn LED on:    
   digitalWrite(ledPin, HIGH);  
 }
 else {
   // turn LED off:
   digitalWrite(ledPin, LOW);
 }
}

Question 3:

a) Which lines do you need to modify to correspond with your button and LED pins?

int ledPin = 9;    // LED connected to digital pin 9

Also, there is no button pin (or function) written into this code, but we could write it in ourselves, similar to the 'Button' code above - i.e. the LED fades when

b) How would you change the rate of fading?

delay(30);  

for(int fadeValue = 0 ; fadeValue <= 255; fadeValue +=5) { 

We would change the value in ( ) above, and we could also change the '+=5' increment to change the rate of fading.


c - extra) Since the human eye doesn't see increases in brightness linearly how could you change the code to make the light appear to fade linearly?

Part B: Frankenlight


1. Super Bright LEDs

a. What is the minimum resistor size that should be used with these LEDs (hint: think about your voltage supply and what the diode voltage drop means)?

V=IR

V = 5V - 3.4V = 1.6V

5V → resistor → forward drop (3.4V)

voltage across resistor = 1.6V

V = IR
1.6V = 0.02A * R
R = 80Ω


Want to draw 100mA for the motor, at 5V
so 5V = .1A(R)
R = 50Ω … need a 50Ω resistor on the end of the motor (where the 100Ω resistor currently is)