Does this work only with declaring:
unsigned long stop = millis();
in setup or do I need to write:
stop = 0;
stop = millis();
before every while loop?
EDIT:
As and aftertought I think this is the way?
unsigned long stop = millis();
in the setup then
stop = millis();
before every while loop