首页 > 其他 > 详细

Arduino程序-光敏电阻

时间:2017-05-29 22:02:07      阅读:369      评论:0      收藏:0      [点我收藏+]

尽管造书去做的。但还是有莫名的成就感


从串口显示出,电压变化,


void setup() {
  // put your setup code here, to run once:
  Serial.begin(9600);
  
}


void loop() {
  // put your main code here, to run repeatedly:
  int val=analogRead(A0);
  Serial.println(val);
  delay(500);
}


技术分享


技术分享

Arduino程序-光敏电阻

原文:http://www.cnblogs.com/llguanli/p/6919096.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!