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
Field | Notes |
---|---|
Board | The "local" temperature measured. (S9 models only) |
Chip | The "remote" temperature measured. (S9 models only) |
TopLeft | The "top left" temperature measured. (S19 models only) |
TopRight | The "top right" temperature measured. (S19 models only) |
BottomRight | The "bottom right" temperature measured. (S19 models only) |
BottomLeft | The "bottom lef" temperature measured. (S19 models only) |
ID | Board ID. Starts at zero. |
TEMP | Same as ID . |