Firmware (LuxOS)
API Docs
CGminer commands
fans

fans

Description

Displays data about the fans and related control parameters. The "FANS" section is Optional and will not be present for Hydro and Immersion machines.

Command

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

Examples

$ echo '{"command": "fans"}' | nc $MINER_IP 4028 | jq
{
  "FANCTRL": [
    {
      "MinFans": 1,
      "PowerOffSpeed": 20
    }
  ],
  "FANS": [
    {
      "FAN": "J12 | J14",
      "ID": 0,
      "RPM": 3900,
      "Speed": 49
    },
    {
      "FAN": "J13 | J12",
      "ID": 1,
      "RPM": 3900,
      "Speed": 49
    },
    {
      "FAN": "J15 | J15",
      "ID": 2,
      "RPM": 3840,
      "Speed": 49
    },
    {
      "FAN": "J14 | J13",
      "ID": 3,
      "RPM": 3780,
      "Speed": 49
    }
  ],
  "STATUS": [
    {
      "Code": 202,
      "Description": "LUXminer 2024.10.11.173603-b90a165c",
      "Msg": "4 Fan(s)",
      "STATUS": "S",
      "When": 1728674350
    }
  ],
  "id": 1
}

Field details

For the FANCTRL section:

FieldNotes
MinFansMinimum number of working fans required to keep the miner hashing
PowerOffSpeedFan power when miner is powered off

For the FANS section:

FieldNotes
FANOptional. ID of the fan. Starts at zero.
IDOptional. Same as FAN.
RPMOptional. The currently measured fan speed (RPM)
SpeedOptional. The currently set fan power, in percentage. More power translates to a higher speed (RPM)