This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Hethondje's profile picture

Linkbook turtle redstone activation

Started by Hethondje, 27 August 2013 - 02:06 AM
Hethondje #1
Posted 27 August 2013 - 04:06 AM
Title: Linkbook turtle redstone activation
I am busy with an automated Linkbook system and wanted to have a turtle break the receptable when he receives a redstone signal.
Is this possible?
Engineer #2
Posted 27 August 2013 - 12:13 PM
Of course! Take a look at the Redstone API and the turtle API on the wiki!
Last1Here #3
Posted 27 August 2013 - 12:22 PM
Like engineer said look into redstone api and turtle api.


You could do something along the lines of:

If redstone.getInput("back") == true then
  turtle.dig()
end
theoriginalbit #4
Posted 28 August 2013 - 12:59 AM
Correct me if I'm wrong, but can't the turtle still use turtle.suck and remove the book from the stand instead of destroying it?