1. 首页
  2. 数据库
  3. 其它
  4. 37种传感器 树莓派开发 2 RGB LED

37种传感器 树莓派开发 2 RGB LED

上传者: 2021-01-16 10:48:12上传 PDF文件 55.69KB 热度 17次
C语言编程 程序原理 还是利用wiringPI调用树莓派的GPIO,利用PWM函数中的softPwmCreate()和softPwmWrite(),结合变色的函数,改变颜色。 softPwmCreate:该函数将会创建一个软件控制的 PWM 管脚。可以使用任何一个 GPIO 管脚,pwmRange 参数可以为 0(关) ~100(全开)。 #include #include #include #define uchar unsigned char #define LedPinRed 0 #define LedPinGreen 1 #define LedPinBlue 2 void
用户评论