Firmware (LuxOS)
API Docs
CGminer commands
temps

temps

Description

Shows per-board temperture data.

Command

$ echo '{"command": "temps"}' | nc $MINER_IP 4028 | jq

Examples

The output fields change depending on the miner model. The example below only shows the fields available on an S9 model; please check the Field Details section to see the full list of available fields.

$ echo '{"command": "temps"}' | nc $MINER_IP 4028 | jq
{
  "STATUS": [
    {
      "Code": 201,
      "Description": "LUXminer 2024.2.19.131822-ef17c0c4",
      "Msg": "3 Temp(s)",
      "STATUS": "S",
      "When": 1672770090
    }
  ],
  "TEMPS": [
    {
      "Board": 61.0,
      "Chip": 76.0,
      "ID": 0,
      "TEMP": 0
    },
    {
      "Board": 58.0,
      "Chip": 77.0,
      "ID": 1,
      "TEMP": 1
    },
    {
      "Board": 62.0,
      "Chip": 82.0,
      "ID": 2,
      "TEMP": 2
    }
  ],
  "id": 1
}

Field details

FieldNotes
BoardThe "local" temperature measured. (S9 models only)
ChipThe "remote" temperature measured. (S9 models only)
TopLeftThe "top left" temperature measured. (S19 models only)
TopRightThe "top right" temperature measured. (S19 models only)
BottomRightThe "bottom right" temperature measured. (S19 models only)
BottomLeftThe "bottom lef" temperature measured. (S19 models only)
IDBoard ID. Starts at zero.
TEMPSame as ID.