完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
Arduino学习之呼吸灯
单片机:七星虫LY-F2开发板兼容Arduino 软件版本:Arduino 1.8.10 今天突然找到了自己去年买的这款七星虫LY-F2开发板,发现自己好像买来就让它吃灰没用过,于是就拿来玩一下,试完第一个例程ledBlink后就想写了个呼吸灯,希望能给各位读者些许帮助。 /************************************************* // 文件说明: Arduino呼吸灯程序 // 创 建 人: mnWu522 // 日期: 2020-1-8 // 修 改 人: // 修改日期: 20xx-xx-xx *************************************************/ /* 七星虫LY-F2 arduino板呼吸灯程序 该板子上自带led灯为13脚。 也可自己外接发光二极管和电阻,此时可以不为13脚。 */ //一些定义和声明 /// int led = 13; /// //初始化 void setup() { // put your setup code here, to run once: pinMode(led,OUTPUT); } //主循环 void loop() { // put your main code here, to run repeatedly: for(int i=1; i<=100; i++) { for(int j=1;j<=i;j++) { digitalWrite(led, HIGH);//led引脚(13脚)置高电平 delayMicroseconds(100);//延时100us } for(int j=1;j<=100-i;j++) { digitalWrite(led, LOW);//led引脚(13脚)置低电平 delayMicroseconds(100); } } for(int i=1; i<=100; i++) { for(int j=1;j<=100-i;j++) { digitalWrite(led, HIGH); delayMicroseconds(100); } for(int j=1;j<=i;j++) { digitalWrite(led, LOW); delayMicroseconds(100); } } } |
|
|
|
只有小组成员才能发言,加入小组>>
3277 浏览 9 评论
2950 浏览 16 评论
3454 浏览 1 评论
8983 浏览 16 评论
4044 浏览 18 评论
1092浏览 3评论
564浏览 2评论
const uint16_t Tab[10]={0}; const uint16_t *p; p = Tab;//报错是怎么回事?
561浏览 2评论
用NUC131单片机UART3作为打印口,但printf没有输出东西是什么原因?
2297浏览 2评论
NUC980DK61YC启动随机性出现Err-DDR是为什么?
1854浏览 2评论
小黑屋| 手机版| Archiver| 电子发烧友 ( 湘ICP备2023018690号 )
GMT+8, 2024-11-19 12:21 , Processed in 1.107649 second(s), Total 49, Slave 40 queries .
Powered by 电子发烧友网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
电子发烧友观察
版权所有 © 湖南华秋数字科技有限公司
电子发烧友 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号