Description
- ws2812Bserial LED in wheel unit * 2
- module 8 module
- Hub LED blacket for sakuraD5
- M3*8 counter sunk screw
attach Hub bracket on each knuckle.
#please check F/LR R/LR
This product need an illumination controller
Sample program
Inwheel illumination
library Adafruit_NeoPixel.h
x
79
79
1
2
3
4
// Parameter 1 = number of pixels in strip
5
// Parameter 2 = pin number (most are valid)
6
// Parameter 3 = pixel type flags, add together as needed:
7
// NEO_KHZ800 800 KHz bitstream (most NeoPixel products w/WS2812 LEDs)
8
// NEO_KHZ400 400 KHz (classic 'v1' (not v2) FLORA pixels, WS2811 drivers)
9
// NEO_GRB Pixels are wired for GRB bitstream (most NeoPixel products)
10
// NEO_RGB Pixels are wired for RGB bitstream (v1 FLORA pixels, not v2)
11
Adafruit_NeoPixel strip = Adafruit_NeoPixel(NUM_LEDS, PIN, NEO_GRB + NEO_KHZ800);
12
13
void setup() {
14
strip.begin();
15
strip.show(); // Initialize all pixels to 'off'
16
}
17
18
19
void loop() {
20
RGBLoop();
21
}
22
23
void RGBLoop(){
24
for(int j = 0; j < 3; j++ ) {
25
// Fade IN
26
for(int k = 0; k < 256; k++) {
27
switch(j) {
28
case 0: setAll(k,0,0); break;
29
case 1: setAll(0,k,0); break;
30
case 2: setAll(0,0,k); break;
31
}
32
showStrip();
33
delay(3);
34
}
35
// Fade OUT
36
for(int k = 255; k >= 0; k--) {
37
switch(j) {
38
case 0: setAll(k,0,0); break;
39
case 1: setAll(0,k,0); break;
40
case 2: setAll(0,0,k); break;
41
}
42
showStrip();
43
delay(3);
44
}
45
}
46
}
47
48
49
50
void showStrip() {
51
52
// NeoPixel
53
strip.show();
54
55
56
// FastLED
57
FastLED.show();
58
59
}
60
61
void setPixel(int Pixel, byte red, byte green, byte blue) {
62
63
// NeoPixel
64
strip.setPixelColor(Pixel, strip.Color(red, green, blue));
65
66
67
// FastLED
68
leds[Pixel].r = red;
69
leds[Pixel].g = green;
70
leds[Pixel].b = blue;
71
72
}
73
74
void setAll(byte red, byte green, byte blue) {
75
for(int i = 0; i < NUM_LEDS; i++ ) {
76
setPixel(i, red, green, blue);
77
}
78
showStrip();
79
}