Microcontroller firmware that uses a simple, yet powerful scripting language to control the timing of input and output events with high temporal resolution. Written by Mattias Karlsson
Diff: main.cpp
- Revision:
- 0:8dbd6bd9167f
diff -r 000000000000 -r 8dbd6bd9167f main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Tue May 19 15:45:42 2015 +0000 @@ -0,0 +1,9 @@ +#include "behave.h" + +using namespace std; + +int main() { + mainLoop m; + m.init(); + m.exec(); +}