เครื่องรดน้ำต้นไม้อัตโนมัติ Arduino Sensor Module const int analogInPin = A0; const int relay = 2 ; int sensorValue = 0 ; // ตัวแปรค่า Analog int outputValue = 0 ; // ตัวแปรสำหรับ Map เพื่อคิด % void setup () { Serial. begin ( 9600 ); pinMode (relay, OUTPUT); } void loop () { sensorValue = analogRead (analogInPin); Serial. print ( " Soil Moisture = " ); Serial. print (outputValue); Serial. println ( " % " ); if (outputValue <= 40 ) { // ตั้งค่า % ที่ต้องการจะรดน้ำต้นไม้ digitalWrite (relay, HIGH); } else { digitalWrite (relay, LOW); } delay ( 1000 ); }
ความคิดเห็น
แสดงความคิดเห็น