Zum Anschluss einer Neopixel-LED an ein Arduino Board wird folgendes benötigt:
Steckbrett Ansicht:
Schaltplan:
Es wird die Adafruit_NeoPixel Bibliothek verwendet. Diese bietet Funktionen zum Ansteuern von Neopixel.
Das Arduino Programm lässt die Neopixel-LEDs in Regenbogenfarben leuchten.
#include <Adafruit_NeoPixel.h>
#define NEOPIXEL_PIN 2 // input pin Neopixel is attached to
#define NUM_PIXELS 8 // number of neopixels in strip
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUM_PIXELS, NEOPIXEL_PIN, NEO_GRB + NEO_KHZ800);
int delayval = 100; // timing delay in milliseconds
int redColor = 0;
int greenColor = 0;
int blueColor = 0;
void setup() {
// Initialize the NeoPixel library.
pixels.begin();
}
void loop() {
setColor();
for (int i=0; i < NUM_PIXELS; i++) {
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
pixels.setPixelColor(i, pixels.Color(redColor, greenColor, blueColor));
// This sends the updated pixel color to the hardware.
pixels.show();
// Delay for a period of time (in milliseconds).
delay(delayval);
}
}
// setColor()
// picks random values to set for RGB
void setColor(){
redColor = random(0, 255);
greenColor = random(0,255);
blueColor = random(0, 255);
}
Es gibt eine Simulation für TinkerCAD Circuits. Hier kann die Schaltung simuliert werden, inklusive des Arduino Programm in Blocks bzw C++.
Und so sieht die Simulation der Schaltung aus.
Der Link zur TinkerCAD Circuits Simulation. Ein Klick auf Start Simulation startet die Simulation.