【Arduino】66种传感器模块系列实验(2)---光敏电阻模块 (2)

【Arduino】66种传感器模块系列实验(2)---光敏电阻模块

 

仿真的实验接线示意图

【Arduino】66种传感器模块系列实验(2)---光敏电阻模块

【Arduino】66种传感器模块系列实验(2)---光敏电阻模块

实验的图形编程

【Arduino】66种传感器模块系列实验(2)---光敏电阻模块

光敏电阻传感器模块实验程序

【Arduino】66种传感器模块系列实验(2)---光敏电阻模块

 

/*
【Arduino】37种传感器模块系列实验(2)
---光敏电阻传感器模块
*/

void setup()
{
pinMode(3,INPUT);
pinMode(13,OUTPUT);
}

void loop() {
if (digitalRead(3)) {
digitalWrite(13,LOW);
}
else {
digitalWrite(13,HIGH);
delay(3000);
}
}

【Arduino】66种传感器模块系列实验(2)---光敏电阻模块

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wpdffw.html