Posted 02 April 2012 - 06:00 AM
So my idea is to have a bundled output running off the system and individual wires running at different times to handle my sorting, but in the help file (which isn't very helpful imo) I don't see anyway of using boolean to turn the wires on and off.
using simple code this is how I am trying to get the system to work
using simple code this is how I am trying to get the system to work
// This is a simple form of what I am trying to achieve
// In the production line these would need to have different
// Timers that would feed off of one computer, so different
// Wires would be needed and a bundled wire to have it all
// Tied into one computer.
while true do
redstone.setOutput("back",true)
sleep(1)
redstone.setOutput("back",false)
sleep(1)
end