Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/support/drivers/admin.lua
blob: c3e3da96e8d5229aa7044eb98f726add8c383bb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
local device = _G
local RESET = string.char(0xFF)

api={}
api.reset = {}
api.reset.parameters = {}
api.reset.returns = {}
api.reset.call = function (data)
	device:send(RESET)
end