1
0
mirror of https://github.com/kepler155c/opus synced 2025-01-26 23:24:45 +00:00

manipulators!

This commit is contained in:
kepler155c@gmail.com 2018-12-06 23:13:43 -05:00
parent 6674c715e0
commit 00fea37f3f

View File

@ -155,7 +155,11 @@ end
drivers['manipulator'] = function(dev)
if dev.getName then
local name = dev.getName()
local name
pcall(function()
name = dev.getName()
end)
if name then
if dev.getInventory then
createDevice(name .. ':inventory', 'inventory', 'getInventory', dev)
end
@ -168,6 +172,7 @@ drivers['manipulator'] = function(dev)
return dev._children
end
end
end
-- initialize drivers