Description
RGB LED strip powered with a voltage of 5 V with a removable silicone case. Consumes power:9.6 W/m, the density is 30 diodes per meter. The degree of protection is IP65. Price per pack, which includes a tape with length of 1 meter. The brightness is 210 lumens. Module requires one microcontroller output (for example, Arduino). The strip can display 24-bit color palette.
An example of a project using LED panels.
Option | Value |
---|---|
Power (Watt per meter) |
9,6 W/m |
Strip length |
1 m
|
Installation: | no |
Degree of protection: |
IP65
|
Power supply: |
5 V DC
|
The color of the light: | RGB |
LED quantity (pieces per meter) |
30 |
LED type: | SMD 5050 |
Protection | silicone case (photos) |
Strip width: |
10 mm |
Connector: | JST SM 3 wire/wire with removed insulation |
Safety/compliance: | RoHS |
Guarantee: | 24 months |
RGB LED strip SK6812 IC - digital, addressed - IP65 30 LED/m, 9.6W/m, 5V - 1m.
The product is compatible with Arduino and Raspberry Pi
|
Install the Adafruit library for Arduino:
- Download the library from GtitHub by clicking the button Download ZIP
- Unzip the downloaded ZIP file, the result should be the folder that contains the files: Adafruit_NeoPixel.cpp That Adafruit_NeoPixel.h and other subfolders
- Rename the main folder to: Adafruit_NeoPixel
- Move the entire folder to the directory that contains the Arduino library, by default you should follow the path: /Documents/Arduino/Libraries
- Start Arduino IDE, the library will appear in the Menu: File -> Examples
First run - simple example
- Run the test by choosing it in the Arduino environment:
- File -> Examples -> Adafruit_Neopixel -> simple
- Select the pin which will control the LEDs. Default is pin 6:
- Line 11 #define PIN 6
- Select the number of pixels that must be controlled. Default is 16:
-
- Line 14 #define NUMPIXELS 16
- Load a program into Arduino. Pixels should turn on in order of the amount specified in line 14.
- If you want to change the lighting color, enter different values into the function:
- Line 40 pixels.setPixelColor(and pixels.Color(0,150,0))
In parentheses there are RGB components, the maximum value is each 255
- Line 40 pixels.setPixelColor(and pixels.Color(0,150,0))
- Changing the speed of individual pixels is possible by editing the value:
- Line 21 int delayval = 500;
Useful links |