ESP8266传感器集合arduino-5516光敏感电阻

传感器用法和集合

模拟元件 【5516光敏电阻模块】(ADC)

核心代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <Arduino.h>
const int AdcPin = A0;

void setup() {
// write your initialization code here
Serial.begin(115200);
}

void loop() {
// write your code here
int adc = analogRead(AdcPin);
Serial.print("value=");
Serial.println(adc);
delay(1000);
}
作者

舰长胡椒

发布于

2022-11-06

更新于

2023-10-13

许可协议

评论