API Docs
cgminer commands
fans

fans

Description

Display data about the fans.

Command

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

Example

$ echo '{"command": "fans"}' | nc $MINER_IP 4028 | jq
{
  "FANS": [
    {
      "FAN": 0,
      "ID": 0,
      "RPM": 4200,
      "Speed": 100
    },
    {
      "FAN": 1,
      "ID": 1,
      "RPM": 5700,
      "Speed": 100
    }
  ],
  "STATUS": [
    {
      "Code": 202,
      "Description": "",
      "Msg": "2 Fan(s)",
      "STATUS": "S",
      "When": 1672770090
    }
  ],
  "id": 1
}

Field details

FieldNotes
FANID of the fan. Starts at zero.
IDSame as FAN.
RPMThe current fan RPM.
SpeedThe current fan speed, in percentage. This is actually the percentage of max power sent to the fans and as such, more power translates to a higher RPM.