Firmware (LuxOS)
API Docs
CGminer commands
tempctrl

tempctrl

Description

Displays temperature control parameters.

Command

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

Examples

$ echo '{"command": "tempctrl"}' | nc $MINER_IP 4028 | jq
{
  "STATUS": [
    {
      "Code": 200,
      "Description": "LUXminer 2024.2.19.131822-ef17c0c4",
      "Msg": "Temperature control",
      "STATUS": "S",
      "When": 1672770090
    }
  ],
  "TEMPCTRL": [
    {
      "Dangerous": 90.0,
      "Hot": 85.0,
      "Mode": "Automatic",
      "Target": 85.0
    }
  ],
  "id": 1
}

Field details

FieldNotes
DangerousThe threshold in which luxminer will shutdown to prevent hardware damage due to high temperatures.
HotSame as Dangerous.
ModeEither Automatic (luxminer will adjust the fan speed by itself) or Manual (user-provided value).
TargetThe threshold in which luxminer will set fans to 100% to reduce the temperture.