Firmware (LuxOS)
API Docs
CGminer commands
fans

fans

Description

Displays data about the fans.

Command

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

Examples

$ 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": "LUXminer 2024.2.19.131822-ef17c0c4",
      "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.