# File lib/rubyipmi/freeipmi/commands/sensors.rb, line 42
    def templist(refreshdata=false)
      refresh if refreshdata
      tlist = []
      values = sensors.each do |sensor|
        match = sensor.first.match(/(temp)_(\d+)/)
        next if match.nil?
        if match[1] == "temp"
          num = (match[2].to_i) -1
          tlist[num] = sensor.last[:value]
        end
      end
      tlist
    end