5313| 3
|
[求助] 大神求解 |
新手第一次接触土壤湿度传感器,请大神讲解一下。谢谢! /* # 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); } |
© 2013-2024 Comsenz Inc. Powered by Discuz! X3.4 Licensed