So I know how to control the rods using rednet with out a turbine but there is no rednet controller for the turbine.
Anyone have any clever ways to control the turbine/reactor setup so it's not wasting fuel.
mining laser with yellow focus will generate more yellorium than used.If you have a way to convert energy into fuel, then its a fairly good way to dump excess power and recycle it as needed.
turbine = peripheral.wrap("back")
while true do
speed = turbine.getRotorSpeed()
if speed > 1850 then
-- slow the turbine down, generate RF
turbine.setInductorEngaged(true)
end
if speed < 1820 then
-- disengage rotors so they spin up again
turbine.setInductorEngaged(false)
end
sleep(0.5)
end