fans
Description
Displays data about the fans and its control parameters.
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": 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
Field | Notes |
---|---|
FAN | ID of the fan. Starts at zero. |
ID | Same as FAN . |
RPM | The current fan RPM. |
Speed | The 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. |