orangeWH 发表于 2017-8-27 22:25:50

大神求解

新手第一次接触土壤湿度传感器,请大神讲解一下。谢谢!
/* # Example code for the moisture sensor   
   # Editor   : Lauren   
   # Date       : 13.01.2012   
   # Version    : 1.0   
   # Connect the sensor to the A0(Analog 0) pin on the Arduino board
   # the sensor value description   
   # 0~300   dry soil   
   # 300~700   humid soil   
   # 700~950   in water
*/
void setup(){      
   Serial.begin(57600);   
}   
void loop(){      
   Serial.print("Moisture Sensor Value:");
   Serial.println(analogRead(0));   
   delay(100);   
}

pATAq 发表于 2017-8-28 16:22:42

大哥你这问题。。。之前有用过Arduino及相关编程经验没?
前者输出一行文字:“湿度传感器数值为:”
后者读取接在模拟传感器输入引脚A0上的传感器数值。analogRead=模拟+读取

Ash 发表于 2017-8-28 10:24:21

你想知哪些内容,问题要再具体一点,不然不大好回答

orangeWH 发表于 2017-8-28 11:09:37

Ash 发表于 2017-8-28 10:24
你想知哪些内容,问题要再具体一点,不然不大好回答

"Moisture Sensor Value:"和analogRead(0)
页: [1]
查看完整版本: 大神求解