UCLA BMES Build Team

Winter Break Problem Set

Problem 4 - Newton’s Luminescent Cradle

Task:

Circuit:

WBPS Newton's Cradle Circuit

Code:

int LED [5] = {7, 6, 5, 4, 3};             //define led pins in array
int button = 8;                            //define button pin
int current = 0;                           //introduce variable for current state of button
int previous = 0;                          //introduce variable for previous state of button
int time = 100;                            //time between led flashes

void setup()
{
  digitalWrite(LED[0], HIGH);              //first led starts on
  pinMode(button, INPUT);
  
  for (int i = 1; i < 5; i++)              //for loop turns all leds off except first one and designates as output
  {
    digitalWrite(LED[i], LOW);
    pinMode(LED[i], OUTPUT);
  }
}

void loop()
{
  current = digitalRead(button);           //current state of button
  if (current != previous)                 //if button state changes (i.e. when pressed)
  {
    while (time < 500)                     //while loop controls when the movement stops depending on how long the delay btwn flashes is
    {                                      //the value 500 ensures it will end on the first led (do calculations)
      for (int i=0; i<5; i++)              //turns leds on in the rightward direction
      {
        digitalWrite(LED[i], LOW);         //turn off led i (starts with first led)
        digitalWrite(LED[i+1], HIGH);      //turn on led to the right
        delay(time);                       //delay between led flashes
        time = time + 10;                  //increase delay between flashes so it slows down
      }
      for (int i=4; i>0; i--)              //turns leds on in the leftward direction
      {
        digitalWrite(LED[i], LOW);         //turn off led i (starts with last led)
        digitalWrite(LED[i-1], HIGH);      //turn on led to the left of i 
        delay(time);                       //delay between led flashes
      	time = time + 10;                  //increase delay between flashes so it slows down
      }
    }
    digitalWrite(LED[0], HIGH);            //cycle ends at the first led, so leave that one on once we leave the while loop
  }
  current = previous;                      //reset current state to LOW (previous is set as 0, or low)
}

Optional Challenge:

//Note that the following code uses different pins for the
//LEDs and buttons than is pictured above.

int switchPin = 13;
int startTime;
double sineTime;
int floorTime;
int prev;

void setup()
{
  for (int i = 1; i < 6; i++)
    pinMode(i, OUTPUT);
  pinMode(switchPin, INPUT);
  digitalWrite(1, HIGH);
}

void loop()
{
  if (digitalRead (switchPin) == HIGH)
  {
    while(digitalRead(switchPin) == HIGH)
    {
      // do nothing while button is still pressed so that code only runs once
    }
    startTime = millis();
    while (millis() - startTime < 9500)
    {
      float t = millis()- startTime;
      sineTime = 2.49 * sin(10000/(pow((t/3500)+10.05, 2))) + 3.5;
      floorTime = floor(sineTime);
      digitalWrite (floorTime, HIGH);
      if (floorTime!= prev)
      {
        digitalWrite (prev, LOW);
      }
      prev = floorTime;
    }
  }
}