Luxor Documentation Hub Logo
Firmware/API Docs/CGminer commands

tempctrl

Displays temperature control parameters

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": [
    {
      "ChipDangerous": 100.0,
      "ChipHot": 93.0,
      "Dangerous": 70.0,
      "Hot": 65.0,
      "Mode": "Automatic",
      "Target": 45.0
      "WaterInletDangerous": 50.0
    }
  ],
  "id": 1
}

Field details

FieldNotes
ChipDangerousThe threshold on chip temperature in which luxminer will shutdown to prevent hardware damage due to high temperatures.
ChipHotThe threshold on chip temperature where the miner is considered hot.
DangerousThe threshold on board temperature in which luxminer will shutdown to prevent hardware damage due to high temperatures.
HotThe threshold on board temperature where the miner is considered hot.
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 temperature.
WaterInletDangerousThe threshold water temperature in which luxminer will shutdown to prevent hardware damage due to high temperatures.

On this page