DULECOLOR RGB LED 双色和RGB灯接线及代码 树莓派3

DULECOLOR RGB LED 双色和RGB灯 双色灯有红绿两种颜色,颜色不能同时亮。rgb灯,不同颜色的灯组合成各种颜色,不同的电压呈现不同的亮度。文章内容为:模块原理图,模块接线图,相关代码。

模块原理图(根据模块测量绘制)左:RGB灯 右:双色灯

DULECOLOR  RGB LED

模块接线图:

DULECOLOR  RGB LED

DULECOLOR  RGB LED

树莓派物理接口与bcm和wiringpi之间的引脚对应图:

树莓派管脚图

引脚表

代码及部分注释:将引脚设置为pwm型,通过pwm输出的不同电压,实现不同的亮度。模拟pwm的取值范围最高255,同时输出电压为3.26v.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <wiringPi.h>
#include <softPwm.h> //模拟pwm的头文件
#include <stdio.h>
#define uchar int //定义int类型的名字是uchar
#define LedPinRed 0 //定义gpio针脚的名字,后面的数字是树莓派上物理的针脚编号
#define LedPinGreen 1 //我是用的是bcm的转接板,需要自己查询编号
#define LedPinBlue 21
void ledInit(void) //设定led(初始化)
{
softPwmCreate(LedPinRed, 0, 100); //pwm的取值范围,最高255
softPwmCreate(LedPinGreen,0, 100);
softPwmCreate(LedPinBlue,0, 255);
}
void ledColorSet(uchar r_val, uchar g_val,uchar b_val)
{
softPwmWrite(LedPinRed, r_val); //写入pwm的值,不同的值实现不同的亮度
softPwmWrite(LedPinGreen, g_val);
softPwmWrite(LedPinBlue, b_val);
}
int main(void)
{
int i;
if(wiringPiSetup() == -1){ //初始化wiringpi库
printf("setup wiringPi failed !");
return 1;
}
ledInit(); //led初始化
while(1){ //控制灯及亮度
//ledColorSet(0xff,0x00,0x00);
//delay(500);
//ledColorSet(0x00,0xff,0x00);
//delay(500);
//ledColorSet(0x00,0x00,0x0);
//delay(500);
//ledColorSet(0x00,0x00,0x4);
//delay(500);
//ledColorSet(0x00,0x00,0x8);
//delay(500);
//ledColorSet(0x00,0x00,0x9);
//delay(500);
//ledColorSet(0x00,0x00,0x10);
//delay(500);
//ledColorSet(0x00,0x00,0x11);
//delay(500);
//ledColorSet(0x00,0x00,0x22);
//delay(500);
//ledColorSet(0x00,0x00,0x33);
//delay(500);
//ledColorSet(0x00,0x00,0x44);
//delay(500);
//ledColorSet(0x00,0x00,0x55);
//delay(500);
//ledColorSet(0x00,0x00,0x64);
//delay(500);
//ledColorSet(0x00,0x00,0x0);
//delay(500);
ledColorSet(0,0,200);
delay(50000);
//ledColorSet(0xff,0x45);
//delay(500);
//ledColorSet(0xff,0xff);
//delay(500);
//ledColorSet(0x7c,0xfc);
//delay(500);
}
return 0;
}

DULECOLOR RGB LED原理图下载链接(OneDrive):

DULECOLOR RGB LED原理图

树莓派3更多模块请点击链接:

从入门到放弃的学习RASPBERRYPI