My Box is in the desert. How can I know when the Box is too hot?

The Camio API endpoint https://api.camio.com/#list-all-devices (i.e. https://camio.com/api/devices?pretty_print) includes temperature readings.

The system_stats.sensor_info varies by the type of hardware unit that's running the Box firmware. All temperatures are in Celsius.

For example the Box on ARM A53 Cortex looks like this, where temp1 is the SOC temp:

"system_stats": {
      "sensor_info": {
        "soc_thermal-virtual-0": {
          "temp1": 55.0
        }, 
        "battery-virtual-0": {
          "temp1": 2.0
        }
      }

 

Box Pro on Intel i5 looks like this, where Core 0 and Core 1 are the CPU socket temperatures:

"system_stats": {
      "sensor_info": {
        "acpitz-virtual-0": {
          "temp2": 29.8, 
          "temp1": 27.8
        }, 
        "coretemp-isa-0000": {
          "Core 0": 77.0, 
          "Physical id 0": 77.0, 
          "Core 1": 71.0
        }, 
        "it8772-isa-0a30": {
          "temp3": -30.0, 
          "+3.3V": 3.288, 
          "fan2": 0.0, 
          "in4": 1.056, 
          "in5": 1.056, 
          "in6": 2.22, 
          "in0": 1.632, 
          "in1": 1.38, 
          "in2": 2.22, 
          "fan1": 0.0, 
          "temp2": 44.0, 
          "fan3": 0.0, 
          "Vbat": 3.24, 
          "temp1": 45.0, 
          "intrusion0": 1.0, 
          "3VSB": 3.264
        }
      }
Have more questions? Submit a request

Comments