Advertisement
Inksaver

turtle as an observer

Feb 9th, 2024 (edited)
735
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.96 KB | Source Code | 0 0
  1. local version = 20240209.0800
  2.  
  3. --[[
  4.     https://pastebin.com/sfY74BVX
  5.    
  6.     To install from turtle use:
  7.         pastebin get sfY74BVX startup.lua
  8.    
  9.     OR copy this source code and save as startup.lua
  10.    
  11.     startup script for turtle used as an observer.
  12.     No tools, no fuel required
  13.     Modem placed behind with network cable to remote computer/turtle
  14.     Transmits "waiting" until block detected below, in front, to right or left
  15.     Message changes to "complete"
  16. ]]
  17.  
  18. local modemPosition = "back"    -- change as required for alternative positions "front", "top", "bottom", "right", "left"
  19.  
  20. local function clear()
  21.     term.clear()            -- clear display
  22.     term.setCursorPos(1,1)  -- reset cursor
  23. end
  24.  
  25. local function wait()
  26.     -- wait for bamboo to grow approx 10 - 15 mins for full growth to level 10
  27.     -- wall / piston mechanism pushes dirt block upwards OR turtle/modem
  28.     local time = 0
  29.     local waitTime = 5
  30.     local message = "waiting"
  31.    
  32.     while true do
  33.         clear()
  34.         -- following code for display purposes only so min/mins and sec/secs is correct
  35.         print("Message broadcast: "..message)
  36.         local mins = math.floor(time / 60)
  37.         local secs = time % 60
  38.         local output = "Waiting for bamboo growth:\n"..time.." seconds ("..mins.." minute"
  39.        
  40.         if mins ~= 1 then  output = output.."s" end
  41.         output = output..", "..secs.." second"
  42.         if secs ~= 1 then  output = output.."s" end
  43.         output = output..")"
  44.         print(output)
  45.         sleep(waitTime)         -- sleep for 5 secs
  46.         message = "waiting"
  47.         if turtle.detect() or turtle.detectDown() then
  48.             message = "complete"
  49.         else
  50.             turtle.turnLeft()
  51.             if turtle.detect() then
  52.                 message = "complete"
  53.             end
  54.            
  55.             turtle.turnRight()
  56.             turtle.turnRight()
  57.             if turtle.detect() then
  58.                 message = "complete"
  59.                 time = 0    -- reset timer
  60.             end
  61.             turtle.turnLeft()
  62.         end
  63.         rednet.broadcast(message)
  64.        
  65.         time = time + waitTime
  66.     end
  67. end
  68.  
  69. local function main()
  70.     rednet.open(modemPosition)
  71.     print("modem opened on '"..modemPosition.."'")
  72.    
  73.     wait()
  74. end
  75.  
  76. main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement