本站改版新增arduino频道

Micropython
Arduino

arduino TEMT6000 光照度


arduino TEMT6000 光照度

int TEMT6000Pin = 5;            //定义引脚
void setup()
{
  Serial.begin(9600);           //设置波特率
} 
void loop()
{
  int value = analogRead(TEMT6000Pin);   //读取A0口模拟值
  Serial.println(value);                //打印A0口模拟值
  delay(100);
}



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

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

执行时间: 0.0094480514526367 seconds