Differences between revisions 1 and 2
Revision 1 as of 2015-02-23 04:06:40
Size: 1663
Editor: SteveLudtke
Comment:
Revision 2 as of 2015-02-23 04:09:56
Size: 1957
Editor: SteveLudtke
Comment:
Deletions are marked like this. Additions are marked like this.
Line 4: Line 4:

The test units I provided have only a single NeoPixel. This makes them a bit less interesting since they are normally used in groups, but they can still do 24 bit color, so the exercise is still at least a little fun.
Line 41: Line 43:
 * First, just try loading this sketch onto the arduino as is.
 * Pick a different color, and make sure you can get that to work.
 * First, just try loading this sketch onto the arduino as is
 * Pick a different color, and make sure you can get that to work
Line 44: Line 46:
 * When you're done, please put the BareMinimum sketch back on the Arduino

Controlling NeoPixels

A NeoPixel is a smart RGB LED. They can be linked together into long chains or grids, and programmed easily with only 1 wire from the Arduino. It is controlled by sending an 8 bit integer for Red, Green and Blue to the Pixel. This is most easily achieved through use of the NeoPixel library you were asked to install.

The test units I provided have only a single NeoPixel. This makes them a bit less interesting since they are normally used in groups, but they can still do 24 bit color, so the exercise is still at least a little fun.

Here is a simple sketch to use it:

#include <Adafruit_NeoPixel.h>

#define PIN 6

// Initialize a strip with a single pixel
Adafruit_NeoPixel strip = Adafruit_NeoPixel(1, PIN, NEO_GRB + NEO_KHZ800);

int lval=0;

void setup() {
  strip.begin();            // startup the strip
  strip.setPixelColor(0,strip.Color(0,64,96));   // purple
  strip.show();             // Initialize pixel to set color
}

void loop() {
delay(50);     // this isn't really necessary
}

// Input a value 0 to 255 to get a color value.
// The colours are a transition r - g - b - back to r.
uint32_t Wheel(byte WheelPos) {
  if(WheelPos < 85) {
   return strip.Color(WheelPos * 3, 255 - WheelPos * 3, 0);
  } else if(WheelPos < 170) {
   WheelPos -= 85;
   return strip.Color(255 - WheelPos * 3, 0, WheelPos * 3);
  } else {
   WheelPos -= 170;
   return strip.Color(0, WheelPos * 3, 255 - WheelPos * 3);
  }
}
  • First, just try loading this sketch onto the arduino as is
  • Pick a different color, and make sure you can get that to work
  • Finally, try having the color change over time in some way by modifying the loop() function
  • When you're done, please put the BareMinimum sketch back on the Arduino

You're done. There is nothing to turn in. If there is time, and you like, you are welcome to do one of the other exercises. Otherwise you're done!

LectureVideo/ArduinoLab/NeoPixel (last edited 2015-02-23 04:12:35 by SteveLudtke)