1 /********************************* 2 代码功能:读取某引脚的模拟量串口返回 3 使用函数: 4 analogRead(引脚号); //调用10位AD 5 创作时间:2016*10*08 6 作者邮箱:[email protected] 7 ********************************/ 8 int analogTnPin = 2; 9 void setup() 10 { 11 Serial.begin(9600); 12 } 13 void loop() 14 { 15 int sensorValue = analogRead(analogTnPin); 16 Serial.println(sensorValue); 17 delay(100); 18 }
时间: 2024-12-19 12:15:38