I have a little problem.
I have a chest that collects Near depleted uranium cells.
What I like to get is everytime a cell arrives in the chest a short redstone pulse comes off the chest.
Im only getting this working with a full chest or empty chest.
Im using a computer (doh) and a gate reader and the code I have so far is:
while true do
m = peripheral.wrap("top")
data = m.get()
if data["Inventory Empty"] then
rs.setOutput("left", true)
sleep(3)
rs.setOutput("left", false)
end
sleep(1)
end












