Categories
EDUC 587

Light Up an LED & Code a Blink

This week we started on the Chibitronics Love to Code kit. Here’s my first two projects!

//Love to Code
//Volume 1: Basic Blink

void setup() {
  outputMode(0);
}

void loop() {
  on(0);
  pause(200);
  off(0);
  pause(500);
  on(0);
  pause(325);
  off(0);
  pause(624);
  on(0);
  pause(142);
  off(0);
  pause(988);
}

Leave a Reply

Your email address will not be published. Required fields are marked *

css.php