Browse Source

Move previousMillis assigment into sensorwert detection block

test_1
T. Meissner 4 years ago
parent
commit
9a097ffc13
1 changed files with 1 additions and 5 deletions
  1. +1
    -5
      erkenn_opto/erkenn_opto.ino

+ 1
- 5
erkenn_opto/erkenn_opto.ino View File

@ -43,8 +43,7 @@ void loop() {
// Zaehlen:
if (sensorwert1 == HIGH) {
press = count++;
Y = 1 * press; // y=mx-b WOFUER WIRD Y GEBRAUCHT?
delay(100); // WARUM WIRD HIER 100 ms GEWARTET?
previousMillis = millis(); // aktuellen Timerwert speichern
}
// Hole aktuelle Zeit in ms
@ -54,9 +53,6 @@ void loop() {
// Wenn Zeitunterschied >= festgelegtes Interval
if (currentMillis - previousMillis >= interval_ms) {
// aktuelle Zeit speichern fuer naechsten Durchlauf
previousMillis = currentMillis;
/*
Jetzt je nach Stand von count einzelne LED anschalten
0-3: rot; 4-6: gelb; > 6: gruen


Loading…
Cancel
Save