Files
klubhaus-doorbell/libraries/FastLED/src/platforms/stub_main.hpp
2026-02-12 00:45:31 -08:00

13 lines
202 B
C++

#pragma once
extern void setup();
extern void loop();
int main() {
// Super simple main function that just calls the setup and loop functions.
setup();
while (1) {
loop();
}
}