rgbmatrixscreen/teensy/lua.hpp
2021-04-29 21:46:54 -04:00

12 lines
No EOL
205 B
C++

#ifndef __LUALIGHTS_LUA_H
#define __LUALIGHTS_LUA_H
#define MAX_PRGMSIZE 12288
extern char l_prog_buff[MAX_PRGMSIZE];
void l_init();
void l_frame();
void l_stop();
void l_start(const char *prgm);
#endif