2015-6-27 19:38:43 [显示全部楼层]
5049浏览
查看: 5049|回复: 4

[讨论] 求LED切换夜灯和呼吸灯的集合代码

[复制链接]
如何在编出LED切换等的基础上将呼吸灯加进去?

Doctor  学徒
 楼主|

发表于 2015-6-27 19:42:17

  1. /*
  2. Exploring Arduino - Code Listing 2-3: LED Fade Sketch
  3. http://www.exploringarduino.com/content/ch2
  4. Copyright 2013 Jeremy Blum ( http://www.jeremyblum.com )
  5. This program is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License v3 as published by
  7. the Free Software Foundation.
  8. */
  9. const int LED=9;   //define LED for Pin 9
  10. void setup()
  11. {
  12.   pinMode (LED, OUTPUT);    //Set the LED pin as an output
  13. }
  14. void loop()
  15. {
  16.   for (int i=0; i<256; i++)
  17.   {
  18.     analogWrite(LED, i);
  19.     delay(10);
  20.   }
  21.   for (int i=255; i>=0; i--)
  22.   {
  23.     analogWrite(LED, i);
  24.     delay(10);
  25.   }
  26. }
复制代码


如何将以上两个代码合在一起做出一个可以在切换LED灯同时让LED灯拥有呼吸灯的状态?
回复

使用道具 举报

yoyojacky  初级技匠

发表于 2015-6-29 00:04:44

下载一个SCoop的库,然后做两个线程。。:lol
回复

使用道具 举报

touchfree  高级技师

发表于 2015-6-29 10:18:50

yoyojacky 发表于 2015-6-29 00:04
下载一个SCoop的库,然后做两个线程。。

高手果然在人间
回复

使用道具 举报

yoyojacky  初级技匠

发表于 2015-7-26 13:58:44

我也是菜鸟,大家多互相交流哦。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

为本项目制作心愿单
购买心愿单
心愿单 编辑
[[wsData.name]]

硬件清单

  • [[d.name]]
btnicon
我也要做!
点击进入购买页面
关于楼主
上海智位机器人股份有限公司 沪ICP备09038501号-4

© 2013-2024 Comsenz Inc. Powered by Discuz! X3.4 Licensed

mail