// Module for interfacing with the I2C interface #include "module.h" #include "lauxlib.h" #include "platform.h" // Lua: i2c.setup( id, sda, scl, speed ) static int i2c_setup( lua_State *L ) { unsigned id = luaL_checkinteger( L, 1 ); unsigned sda = luaL_checkinteger( L, 2 ); unsigned scl = luaL_checkinteger( L, 3 ); MOD_CHECK_ID( i2c, id ); MOD_CHECK_ID( gpio, sda ); MOD_CHECK_ID( gpio, scl ); int32_t speed = ( int32_t )luaL_checkinteger( L, 4 ); luaL_argcheck( L, speed > 0, 4, "wrong arg range" ); if (!platform_i2c_setup( id, sda, scl, (uint32_t)speed )) luaL_error( L, "setup failed" ); return 0; } // Lua: i2c.start( id ) static int i2c_start( lua_State *L ) { unsigned id = luaL_checkinteger( L, 1 ); MOD_CHECK_ID( i2c, id ); if (!platform_i2c_send_start( id )) luaL_error( L, "command failed"); return 0; } // Lua: i2c.stop( id ) static int i2c_stop( lua_State *L ) { unsigned id = luaL_checkinteger( L, 1 ); MOD_CHECK_ID( i2c, id ); if (!platform_i2c_send_stop( id )) luaL_error( L, "command failed" ); return 0; } // Lua: status = i2c.address( id, address, direction ) static int i2c_address( lua_State *L ) { unsigned id = luaL_checkinteger( L, 1 ); int address = luaL_checkinteger( L, 2 ); int direction = luaL_checkinteger( L, 3 ); MOD_CHECK_ID( i2c, id ); luaL_argcheck( L, address >= 0 && address <= 127, 2, "wrong arg range" ); int ret = platform_i2c_send_address( id, (uint16_t)address, direction, 1 ); lua_pushboolean( L, ret > 0 ); return 1; } // Lua: wrote = i2c.write( id, data1, [data2], ..., [datan] ) // data can be either a string, a table or an 8-bit number static int i2c_write( lua_State *L ) { unsigned id = luaL_checkinteger( L, 1 ); const char *pdata; size_t datalen, i; int numdata; uint32_t wrote = 0; unsigned argn; MOD_CHECK_ID( i2c, id ); if( lua_gettop( L ) < 2 ) return luaL_error( L, "wrong arg type" ); for( argn = 2; argn <= lua_gettop( L ); argn ++ ) { // lua_isnumber() would silently convert a string of digits to an integer // whereas here strings are handled separately. if( lua_type( L, argn ) == LUA_TNUMBER ) { numdata = ( int )luaL_checkinteger( L, argn ); if( numdata < 0 || numdata > 255 ) return luaL_error( L, "wrong arg range" ); if( platform_i2c_send_byte( id, numdata, 1 ) != 1 ) break; wrote ++; } else if( lua_istable( L, argn ) ) { datalen = lua_objlen( L, argn ); for( i = 0; i < datalen; i ++ ) { lua_rawgeti( L, argn, i + 1 ); numdata = ( int )luaL_checkinteger( L, -1 ); lua_pop( L, 1 ); if( numdata < 0 || numdata > 255 ) return luaL_error( L, "wrong arg range" ); if( platform_i2c_send_byte( id, numdata, 1 ) == 0 ) break; } wrote += i; if( i < datalen ) break; } else { pdata = luaL_checklstring( L, argn, &datalen ); for( i = 0; i < datalen; i ++ ) if( platform_i2c_send_byte( id, pdata[ i ], 1 ) == 0 ) break; wrote += i; if( i < datalen ) break; } } lua_pushinteger( L, wrote ); return 1; } // Lua: read = i2c.read( id, size ) static int i2c_read( lua_State *L ) { unsigned id = luaL_checkinteger( L, 1 ); uint32_t size = ( uint32_t )luaL_checkinteger( L, 2 ), i; luaL_Buffer b; int data; MOD_CHECK_ID( i2c, id ); if( size == 0 ) return 0; luaL_buffinit( L, &b ); for( i = 0; i < size; i ++ ) if( ( data = platform_i2c_recv_byte( id, i < size - 1 ) ) == -1 ) break; else luaL_addchar( &b, ( char )data ); luaL_pushresult( &b ); return 1; } static const LUA_REG_TYPE i2c_map[] = { { LSTRKEY( "setup" ), LFUNCVAL( i2c_setup ) }, { LSTRKEY( "start" ), LFUNCVAL( i2c_start ) }, { LSTRKEY( "stop" ), LFUNCVAL( i2c_stop ) }, { LSTRKEY( "address" ), LFUNCVAL( i2c_address ) }, { LSTRKEY( "write" ), LFUNCVAL( i2c_write ) }, { LSTRKEY( "read" ), LFUNCVAL( i2c_read ) }, { LSTRKEY( "FAST" ), LNUMVAL( PLATFORM_I2C_SPEED_FAST ) }, { LSTRKEY( "SLOW" ), LNUMVAL( PLATFORM_I2C_SPEED_SLOW ) }, { LSTRKEY( "TRANSMITTER" ), LNUMVAL( PLATFORM_I2C_DIRECTION_TRANSMITTER ) }, { LSTRKEY( "RECEIVER" ), LNUMVAL( PLATFORM_I2C_DIRECTION_RECEIVER ) }, {LNILKEY, LNILVAL} }; NODEMCU_MODULE(I2C, "i2c", i2c_map, NULL);