separate docs stubs Includes introducing a cool new script to turn lua-language-server's json output into markdown documentation.
13 lines
504 B
Lua
13 lines
504 B
Lua
--- @meta
|
|
|
|
--- The `controls` module contains Properties relating to the device's physical
|
|
--- controls. These controls include the touchwheel, the lock switch, and the
|
|
--- side buttons.
|
|
--- @class controls
|
|
--- @field scheme Property The currently configured control scheme
|
|
--- @field scroll_sensitivity Property How much rotational motion is required on the touchwheel per scroll tick.
|
|
--- @field lock_switch Property The current state of the device's lock switch.
|
|
local controls = {}
|
|
|
|
return controls
|