Số lượng mua
(Cái)
|
Đơn giá
(VND)
|
1+ | 3.500 |
50+ | 3.400 |
100+ | 3.300 |
Giao hàng toàn quốc
Thanh toán khi nhận hàng
Cam kết đổi/trả hàng
Thuộc tính | Giá trị | Tìm kiếm |
---|---|---|
Loại |
LED WS2812 5050 |
|
Số LED |
1 |
|
Màu sắc |
RGB |
|
Điện áp cấp |
5V |
|
RoHS |
|
|
43 Sản phẩm tương tự |
void setup () { //Output pin initialization for the LEDs pinMode (Led_Red, OUTPUT); pinMode (Led_Green, OUTPUT); pinMode (Led_Blue, OUTPUT); } void loop () { // In this for-loop, the 3 LEDs will get different PWM-values // Via mixing the brightness of the different LEDs, you will get different colors. for (val = 255; val> 0; val--) { analogWrite (Led_Blue, val); analogWrite (Led_Green, 255-val); analogWrite (Led_Red, 128-val); delay (1); } // You will go backwards through the color range in this second for loop. for (val = 0; val <255; val++) { analogWrite (Led_Blue, val); analogWrite (Led_Green, 255-val); analogWrite (Led_Red, 128-val); delay (1); } }