--lazydebug
local function uhh(input)
  print(textutils.serialize(input))
end

--variablesss
side = "bottom"
perp = peripheral.getNames()
t = {} --table for unknown perips

--find non standard perips
for x,y in pairs(perp) do
 if string.len(y) >= 7 then
  print("wrapped "..y)
  table.insert(t,y)
 end
end
wat = peripheral.wrap(t[1])
--uhh(peripheral.getMethods(t[1]))
uhh(wat.getTankInfo("unknown"))
