How Can One Automate Charging of Suits?

  • Please make sure you are posting in the correct place. Server ads go here and modpack bugs go here
  • The FTB Forum is now read-only, and is here as an archive. To participate in our community discussions, please join our Discord! https://ftb.team/discord

DigiplayW8

New Member
Jul 29, 2019
2
0
0
I am using FTB Ultimate 1.5.2 Beta with GT v0.5 and attempted to use Direwolf's "charge" program using a gatereader turtle and ender chests/bags but as soon as i run the program it says "charge:4: java.lang.AbstractMethodError" so i'm assuming somewhere along the "data = m.get()" became obsolete and must be changed....if somebody could give me a program that does exactly what dires did, just updated enough so that 1.5.2 can use it that'd be amazing
Code:
m = peripheral.wrap("right")
 
function checkDoneCharging()
  data = m.get()
  return(data["Charging Fully Charged Item"])
end
 
function emptyMFSU()
  turtle.select(16)
  turtle.suckDown()
  turtle.drop()
end
 
function fillMFSU()
  turtle.select(1)
  turtle.suckUp()
  turtle.dropDown()
end
 
while true do
  if checkDoneCharging() then
      emptyMFSU()
      fillMFSU()
  end
  sleep(5)
end

this is the code he used for anybody who would like to edit it (also found at pastebin.com/6AcwzxSh)
 

AliveGhost

New Member
Jul 29, 2019
167
0
0
If power converters is available, you can use the universal charger. Put an IC2 consumer, an energy link and then a universal charger next to the ender chest or whichever chest you would like to put the items to be charged into.

Sent from my HTC Desire X using Tapatalk 2
 

DZCreeper

New Member
Jul 29, 2019
1,469
0
1
Also, it will charge your suit at the rate of input. So if you have an Extreme Voltage Consumer, and give it a 8192eu/t input, then it will charge the items in the inventory at that rate. So for faster charging make sure your system can output lots of stored energy at once.
 

Harvest88

New Member
Jul 29, 2019
1,365
-1
0
Also, it will charge your suit at the rate of input. So if you have an Extreme Voltage Consumer, and give it a 8192eu/t input, then it will charge the items in the inventory at that rate. So for faster charging make sure your system can output lots of stored energy at once.

Cool! so gotta get an another Enderchest and pouch! to charge my nano on the go at that extreme rate.