Sporttafel/src/main.cpp
2025-03-13 16:01:57 +01:00

29 lines
408 B
C++

#include "beeper.h"
#include "button.h"
#include "buzzer.h"
#include "countdown.h"
#include "display.h"
#include "remote.h"
void setup() {
delay(500);
Serial.begin(115200);
Serial.println("\n\n\nStartup");
beeperSetup();
buttonSetup();
buzzerSetup();
remoteSetup();
displaySetup();
countdownSetup();
}
void loop() {
beeperLoop();
buttonLoop();
remoteLoop();
countdownLoop();
}