Posted 30 March 2013 - 05:33 AM
Recently I've been playing Feed the Beast (a lot) and experimenting with using computers with other mods. I decided to make a frame elevator that used a computer to use wireless redstone to move the elevator.
function down()
redstone.setOutput("left", true) --the transmitter is on the left side
sleep(2) --just so the motor can move the frames before it gets another current
redstone.setOutput("left", false)
end
down()
down()
down()
down()
down()
down()
down()
Theres also a program for up which is pretty much the same thing except the transmitter is connected to reciever behind the motor that makes it go up. My problem with this is it is just sending one continuous current not turning on and off like I want it to. Is this a problem with my code or a problem with wireless redstone.