arduino-audio-tools
Loading...
Searching...
No Matches
Main.h
Go to the documentation of this file.
1
4#ifndef NO_MAIN
5
6#pragma once
7void loop();
8void setup();
9
10int main (void) {
11 setup();
12 while(true){
13 loop();
14 }
15 }
16
17#endif
void setup()
int main(void)
Definition Main.h:10
void loop()