Module Name

The module name wraps your C or C++ function names into a Lua table.

For example, assume we name the module "motor" and we have the two following C functions:

void start(); void stop();

The above two functions will be available in Lua by calling:

motor.start() motor.stop()

Return