本站改版新增arduino频道

Micropython
Arduino

ESP32(Micro Python) RGB灯随机颜色


ESP32(Micro Python) RGB灯随机颜色


本程序使用WS2812,驱动为MicroPython固件自带。每0.1秒刷新1个灯,红、绿、蓝三色均实现0到255随机取值。


代码如下


#接线: WS-->(16)         

 

#导入Pin模块

from machine import Pin

from neopixel import NeoPixel

import time

import random

 

#定义RGB控制对象

#控制引脚为16,RGB灯串联5个

pin=16

rgb_num=5

rgb_led=NeoPixel(Pin(pin,Pin.OUT),rgb_num)  

 

#程序入口

if __name__=="__main__" :

 

    while True:        

            for i in range(rgb_num):

                a=random.randint(0,255)

                b=random.randint(0,255)

                c=random.randint(0,255)

                rgb_led[i]=(a, b, c)

                rgb_led.write()

                time.sleep_ms(100)


————————————————

版权声明:本文为CSDN博主「路易斯720」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/weixin_74155302/article/details/130979096



推荐分享
图文皆来源于网络,内容仅做公益性分享,版权归原作者所有,如有侵权请告知删除!
 

Copyright © 2014 ESP56.com All Rights Reserved
晋ICP备14006235号-22 晋公网安备14108102001165号

执行时间: 0.0096340179443359 seconds