add delay for redebility

This commit is contained in:
Erik Foris 2022-04-10 19:11:25 +02:00
parent b3e2d861d9
commit b161ab7ff7
2 changed files with 2 additions and 9 deletions

View File

@ -1,9 +0,0 @@
[build]
target = "avr-specs/avr-atmega328p.json"
[target.'cfg(target_arch = "avr")']
runner = "ravedude nano -cb 57600"
[unstable]
build-std = ["core"]
build-std-features = ["compiler-builtins-mangled-names"]

View File

@ -15,7 +15,9 @@ void setup() {
Serial.begin(19200); Serial.begin(19200);
digitalWrite(5 , HIGH); digitalWrite(5 , HIGH);
attachInterrupt(0, wakeUp, FALLING); attachInterrupt(0, wakeUp, FALLING);
delay(10);
Serial.println("https://git.sfs.ddnss.org/Erik/garden-watering-controller.git"); Serial.println("https://git.sfs.ddnss.org/Erik/garden-watering-controller.git");
delay(100);
} }