1 Star 0 Fork 0

visitor009/esp32 micropython

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
rgbLed.py 665 Bytes
一键复制 编辑 原始数据 按行查看 历史
visitor009 提交于 2024-01-24 03:01 . add rgbLed.py.
# 导入Pin、PWM和random库.
from machine import Pin, PWM
import math
# rgb 灯控制
# 使用 rgb = RgbLed(21,19,18)
# rgb.setColor(255,0,0)
class RgbLed:
# r g b IO 引脚
def __init__(self,r,g,b):
self.r = PWM(Pin(r),freq=1000, duty=0)
self.g = PWM(Pin(g),freq=1000, duty=0)
self.b = PWM(Pin(b),freq=1000, duty=0)
# r g b 0-255,像ps那样的颜色范围
def setColor(self,r, g, b):
self.r.duty(math.ceil(r*4.011))
self.g.duty(math.ceil(g*4.011))
self.b.duty(math.ceil(b*4.011))
def clear(self):
self.r.duty(0)
self.g.duty(0)
self.b.duty(0)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/visitor009/esp32-micropython.git
[email protected]:visitor009/esp32-micropython.git
visitor009
esp32-micropython
esp32 micropython
master

搜索帮助