10 lines
191 B
C++
10 lines
191 B
C++
void KomponenteA::loop() {
|
|
this->komponenteB->loop();
|
|
this->komponenteC->loop();
|
|
|
|
if (millis() - this->lastMillis < this->delayMillis)
|
|
return;
|
|
|
|
this->doSomething();
|
|
}
|