Im slowly getting there bit by bit but im having trouble figuring out this getTankInfo() using openperipherals
the code used is similar to this
boiler = peripheral.wrap("solid_fueled_boiler_firebox_0") //This Works fine i can find the boiler on the the network using this line
then i type
boiler.getTankInfo()
which brings up a table displaying the water and steam's capacity and fill percentage
now im having trouble displaying these values on the monitor(Because its a table you cant just write a table)
i have tried this code here but it just brings up Table:######
for i,v in pairs(boiler.getTankInfo()) do print(v) end
any ideas? im pretty new to CC coding