29 lines
408 B
C++
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();
|
|
}
|