Keyestudio RGB LED Modül
127,95 TL
Contents (Hızlı Menü)
Introduction / Tanıtım
This is a full-color LED module, where contains 3 basic colors-red, green and blue. They can be regarded as separate three LED lights. After programming, you can turn them on and off by sequence. And you can also use PWM analog output to mix these three colors to generate different colors.
Kırmızı, yeşil ve mavi olmak üzere 3 temel renk içeren renkli bir LED modüldür. Farklı üç LED ışık varmış gibi kabul edilebilir. Programlamadan sonra, bunları belli bir sırayla açıp kapatabilirsiniz. Ayrıca, bu üç rengi karıştırıp farklı renkler üretmek üzere PWM analog çıkışını da kullanabilirsiniz.
Specifications / Özellikler
- Color: red, green and blue
- Brightness: High
- Voltage: 5V
- Input: digital level
- Size: 30 * 20mm
- Weight: 3g
- Renk: kırmızı, yeşil ve mavi
- Parlaklık: Yüksek
- Gerilim: 5V
- Giriş: dijital seviye
- Boyut: 30 * 20mm
- Ağırlık: 3g
Connection Diagram / Bağlantı Şeması
Sample Code / Örnek Kod
int redpin = 11; //select the pin for the red LED int bluepin =10; // select the pin for the blue LED int greenpin =9;// select the pin for the green LED int val; void setup() { pinMode(redpin, OUTPUT); pinMode(bluepin, OUTPUT); pinMode(greenpin, OUTPUT); } void loop() {for(val=255; val>0; val--) {analogWrite(11, val); analogWrite(10, 255-val); analogWrite(9, 128-val); delay(1); } for(val=0; val<255; val++) {analogWrite(11, val); analogWrite(10, 255-val); analogWrite(9, 128-val); delay(1); } }
Resources / Kaynaklar
Video
https://drive.google.com/open?id=14s3PqVei8BwSbTUayAVzQQRgUERpbS5T
Bu ürüne ilk yorumu siz yapın!