Beskrivelse
WS2812B RGB Wemos skjold. Skærm med en RGB WS2812B 5050 LED. Fungerer med neopixel-biblioteket. Kan styres via ben D2 og 5V.
Wemos D1 mini start:
- Wemos D1 mini manual Arduino IDE
- Wemos D1 mini manual NodeMCU
- Drivere
€1,95
15 på lager
WS2812B RGB Wemos skjold. Skærm med en RGB WS2812B 5050 LED. Fungerer med neopixel-biblioteket. Kan styres via ben D2 og 5V.
Wemos D1 mini start:
- Wemos D1 mini manual Arduino IDE
- Wemos D1 mini manual NodeMCU
- Drivere
#include
#define PIN D2
// When we setup the NeoPixel library, we tell it how many pixels, and which pin to use to send signals.
// Note that for older NeoPixel strips you might need to change the third parameter--see the strandtest
// example for more information on possible values.
Adafruit_NeoPixel pixels = Adafruit_NeoPixel(1, PIN, NEO_GRB + NEO_KHZ800);
void setup() {
pixels.begin(); // This initializes the NeoPixel library.
}
void loop() {
// For a set of NeoPixels the first NeoPixel is 0, second is 1, all the way up to the count of pixels minus one.
// pixels.Color takes RGB values, from 0,0,0 up to 255,255,255
for (int i = 0; i < 2; i++) {
for (int j = 0; j < 2; j++) {
for (int k = 0; k < 2; k++) {
pixels.setPixelColor(0, pixels.Color(i * 255, j * 255, k * 255)); // Moderately bright green color.
pixels.show(); // This sends the updated pixel color to the hardware.
delay(200); // Delay for a period of time (in milliseconds).
}
}
}
} Kun kunder, der er logget ind og har købt dette produkt, kan efterlade en anmeldelse.
Anmeldelser
Der er endnu ingen anmeldelser.