本站改版新增arduino频道

Micropython
Arduino

arduino 光敏电阻检测光照强度


arduino 光敏电阻检测光照强度

// 定义光敏电阻模块的信号引脚
const int lightSensorPin = 4;

void setup() {
  // 开启串口通信
  Serial.begin(115200);
}

void loop() {
  // 读取光敏电阻模块的电压值
  int sensorValue = analogRead(lightSensorPin);

  // 将电压值转换为光照强度
  float voltage = sensorValue * (5.0 / 1023.0);
  int lightIntensity = map(sensorValue, 0, 1023, 0, 100);

  // 打印光照强度值
  Serial.print("光照强度:");
  Serial.print(lightIntensity);
  Serial.println("");

  // 等待一段时间
  delay(100);
}



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

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

执行时间: 0.0095589160919189 seconds