Commit c30002b8 authored by Till Klocke's avatar Till Klocke
Browse files

Fixed typo in method name

parent 0950e489
...@@ -61,9 +61,9 @@ const LUA_REG_TYPE ws2812_map[] = ...@@ -61,9 +61,9 @@ const LUA_REG_TYPE ws2812_map[] =
{ LNILKEY, LNILVAL} { LNILKEY, LNILVAL}
}; };
LUALIB_API int ws2812( lua_State *L ) LUALIB_API int luaopen_ws2812( lua_State *L )
{ {
// Make sure that the GPIO system is initialized // TODO: Make sure that the GPIO system is initialized
LREGISTER( L, "ws2812", ws2812_map ); LREGISTER( L, "ws2812", ws2812_map );
return 1; return 1;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment