16 lines
202 B
C
16 lines
202 B
C
|
/**
|
||
|
* External library
|
||
|
*/
|
||
|
|
||
|
#ifndef __LEXLIBS_H__
|
||
|
#define __LEXLIBS_H__
|
||
|
|
||
|
#define EXLIB_ARDUINO "arduino"
|
||
|
|
||
|
#define LUA_EXLIBS_ROM\
|
||
|
_ROM(EXLIB_ARDUINO, luaopen_arduino, arduino_map )
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|