Compare commits

..

No commits in common. "b3e2d861d9e270aa824fe95398475454c2fbe6f9" and "373ea07fff473865b519efab51f87ec535460467" have entirely different histories.

2 changed files with 15 additions and 6 deletions

View File

@ -15,7 +15,7 @@ void setup() {
Serial.begin(19200);
digitalWrite(5 , HIGH);
attachInterrupt(0, wakeUp, FALLING);
Serial.println("https://git.sfs.ddnss.org/Erik/garden-watering-controller.git");
}
@ -103,6 +103,7 @@ void wateringTheGarden() {
wait(calculatePumpOnTime() * 1000);
digitalWrite(7, LOW);
digitalWrite(9, LOW);
} else {
Serial.println("Wet enough");
}

View File

@ -2,9 +2,10 @@
void setup() {
pinMode(2, INPUT);
pinMode(A4, INPUT);
pinMode(A2, INPUT);
pinMode(A0, INPUT);
Serial.begin(19200);
float poty;
float dampness;
}
@ -12,7 +13,14 @@ void loop() {
Serial.println(digitalRead(2));
delay(200);
Serial.println(analogRead(A4));
Serial.println(analogRead(A2));
Serial.println(analogRead(A0));
delay(1000);
Serial.println(percentage() ,4);
delay(20);
}
float percentage(){
// float poty = analogRead(A2);
//return poty/454;
return analogRead(A4) / 454;
}