Initialize modular ATM10 CC control system
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
return { probe = function() return nil, "create driver not configured" end }
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
return { probe = function() return nil, "energy driver not configured" end }
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
return { probe = function() return nil, "inventory driver not configured" end }
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
return { probe = function() return nil, "mekanism driver not configured" end }
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
local M = {}
|
||||
function M.set(side, enabled) redstone.setOutput(side, enabled == true) end
|
||||
function M.get(side) return redstone.getInput(side) end
|
||||
return M
|
||||
|
||||
Reference in New Issue
Block a user