initial commit
This commit is contained in:
12
libraries/FastLED/src/platforms/stub_main.hpp
Normal file
12
libraries/FastLED/src/platforms/stub_main.hpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user