finish script to read out the pottys for insertion in the main programm
This commit is contained in:
parent
373ea07fff
commit
9c46729c59
@ -2,10 +2,9 @@
|
||||
void setup() {
|
||||
pinMode(2, INPUT);
|
||||
pinMode(A4, INPUT);
|
||||
pinMode(A2, INPUT);
|
||||
pinMode(A0, INPUT);
|
||||
Serial.begin(19200);
|
||||
float poty;
|
||||
float dampness;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@ -13,14 +12,7 @@ void loop() {
|
||||
Serial.println(digitalRead(2));
|
||||
delay(200);
|
||||
Serial.println(analogRead(A4));
|
||||
Serial.println(percentage() ,4);
|
||||
delay(20);
|
||||
Serial.println(analogRead(A2));
|
||||
Serial.println(analogRead(A0));
|
||||
delay(1000);
|
||||
}
|
||||
|
||||
float percentage(){
|
||||
|
||||
// float poty = analogRead(A2);
|
||||
//return poty/454;
|
||||
return analogRead(A4) / 454;
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user