Description
RGB LED strip powered with a voltage of5 Vwith a removable silicone case. Consumes power:18 W/m, the density is60 diodesper meter. The temperature of white color light can be adjusted from2800 K cool to 6500 K warm, the degree of protection is IP65. Price per pack, which includes a tape with length of 1 meter. The brightness is420 lumens.Module requires one microcontroller output (for example,Arduino).The strip can display24-bit color palette.
The decoration made using a LED strip.
Option | Value |
---|---|
Power (Watt per meter) |
18/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) |
60 |
LED type: | SMD 4020 |
Protection | silicone case (photos) |
Strip width: |
5 mm (with case 8 mm) |
Connector: | JST SM 3 wire/wire with removed insulation |
Safety/compliance: | RoHS |
Guarantee: | 24 months |
Connection
The device has a 3-pin connector consisting of the following outputs:
- GND (white wire)- module's ground
- 5 V (red wire)- voltage supply, for one matrix you should connect the source with the maximum load current minimum 2.9 A for each meter
- DIN (green wire)- digital control signal from the microcontroller
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 |