Jurassic Paper Brainstorming: * Using lights and a sensor (motion? light?) to activate an addressable light strip in sequence and music and sounds; cast against cutouts of dinos and environment. Materials: *LEDs *Speaker *spot light *fake plant? To test: *make sure that each of the cut outs are sized correctly * Test light movement to simulate real movement * choose a proper sensor that will work for the project * Choose a location to stage and document Strip lights to move and simulate light MY CODE #include #ifdef __AVR__ #include #endif // what pin are the neopixels on? #define PIN 10 // how many pixels? #define NUMPIXELS 10 int counter = -1; //declare a neopixel (software) object Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); void setup() { pinMode(9, INPUT); digitalRead(9); pixels.begin(); // This initializes the NeoPixel library. pixels.show(); // start with all pixels off Serial.begin(9600); } void ...