九、完善程序,让呼吸灯渐渐变蓝
1.import ybc_robot #导入ybc_robot 机器人模块:
2.import time #导入time 时间模块:
3.
4.
5.rr=ybc_robot .RGBRing("P1") #创建灯环对象rr,接口选择P1
6.
7.#模拟呼吸效果
8.for i in range(101):
9. #从0-100调节灯环亮度,颜色设为“蓝色”
10. rr.turn_on(i,"蓝色”)
11.time.sleep(3)
十、升级程序,制作变色呼吸灯
1.import ybc_robot #导入ybc_robot 机器人模块:
2.import time #导入time 时间模块:
3.
4.
5.rr=ybc_robot .RGBRing("P1") #创建灯环对象rr,接口选择P1
6.
7.for i in range(101):
8. #从0-100调节灯环亮度,颜色逐渐变亮,颜色设为“蓝色”
9. rr.turn_on(i,"蓝色”)
10.time.sleep(3)
11.
12.for i in range(101):
13. #从0-100调节灯环亮度,颜色逐渐变亮,颜色设为“红色”
14. rr.turn_on(i,"红色”)
15. time.sleep(3)
16.rr.turn_off() #灯环关闭
网友评论