m0nstar

cube_power_monitor

Jul 28th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.20 KB | None | 0 0
  1. --[[
  2.  
  3. Cube Power Monitor
  4.  
  5. Power Detect / Base status / Reactor/engines control
  6.  
  7. Attach Thermal Expansion energy cells via wired modem and networking cable
  8.  
  9. Calculates power stored percentage and sends to channel 1 for base status display
  10. Turns Big Reactor/Engines on/off with signals to channel 3
  11.  
  12. --]]
  13.  
  14. local status_channel = 1
  15. local reactor_control_channel = 3
  16. local engine_control_channel = 4
  17.  
  18. local modem = peripheral.wrap('top')
  19. local wlan = peripheral.wrap('back')
  20.  
  21. local cubes = {}
  22. local cube_capacity = 0
  23. local total_capacity = 0
  24.  
  25. function round(num, dec)
  26.   local shift = 10^(dec or 2)
  27.   return math.floor(num * shift + 0.5) / shift
  28. end
  29.  
  30. function reactor_on()
  31.   print('Turning reactor on!')
  32.   wlan.transmit(reactor_control_channel,10,"REACTOR_ON")
  33. end
  34.  
  35. function reactor_off()
  36.   print('Turning reactor off!')
  37.   wlan.transmit(reactor_control_channel,10,"REACTOR_OFF")
  38. end
  39.  
  40. function engines_on()
  41.   print('Turning engines on!')
  42.   wlan.transmit(engine_control_channel,10,"ENGINES_ON")
  43. end
  44.  
  45. function engines_off()
  46.   print('Turning engines off!')
  47.   wlan.transmit(engine_control_channel,10,"ENGINES_OFF")
  48. end
  49.  
  50. -- Get list of cubes only
  51. local connected = modem.getNamesRemote()
  52. for i=1, #connected do
  53.   if string.match(peripheral.getType(connected[i]),"thermalexpansion_cell") then
  54.     print ("Found cube "..connected[i])
  55.     table.insert(cubes,connected[i])
  56.     -- Calculate total capacity
  57.     cube_capacity = modem.callRemote(connected[i],"getMaxEnergyStored")
  58.     total_capacity = total_capacity + cube_capacity
  59.   end
  60. end
  61.  
  62. print ('Total Capacity='..total_capacity)
  63. print ('Loop...')
  64.  
  65. -- Status loop
  66. while true do
  67.  
  68.   local cube_stored = 0
  69.   local total_stored = 0
  70.  
  71.   for i=1, #cubes do
  72.     cube_stored = modem.callRemote(cubes[i],"getEnergyStored")
  73.     total_stored = total_stored + cube_stored
  74.   end
  75.  
  76.   percent = round(total_stored / total_capacity * 100,2)
  77.   print(total_stored..'/'..total_capacity..' = '..percent..'%')
  78.  
  79.   if percent < 40 then
  80.     reactor_on()
  81.   end
  82.  
  83.   if percent < 70 then
  84.     engines_on()
  85.   end
  86.  
  87.   if percent > 90 then
  88.     reactor_off()
  89.     engines_off()
  90.   end
  91.  
  92.   wlan.transmit(status_channel,10,"power_percent="..percent)
  93.   sleep(5)
  94.  
  95. end
Add Comment
Please, Sign In to add comment