API Docs
LuxMiner commands
limits

limits

Description

Display miner parameter limits. The *Min and *Max values represent allowed ranges, while the *Default are the recommended values for the parameter. The frequency and voltage "default" values are the values defined by the manufacturer (if available) or know safe operation values. This is not the same thing as the default frequency and voltage values from the profiles.

The same thing happens with the temperature values - they are the recommended value, not the actual limits defined (to view the current temperature limits, check tempctrl).

Those values are tied to the running hardware, and don't change at runtime, so consider caching this call on the client-side.

Command

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

Examples

$ echo '{"command": "limits"}' | nc $MINER_IP 4028 | jq
{
  "LIMITS": [
    {
      "AtmMaxMinutes": 1440,
      "AtmMaxTemp": 10,
      "AtmMinMinutes": 1,
      "AtmMinTemp": 5,
      "AtmPostRampDefault": 15,
      "AtmStartupDefault": 15,
      "AtmTempWindowDefault": 10,
      "FanSpeedDefault": -1,
      "FanSpeedMax": 100,
      "FanSpeedMin": -1,
      "FrequencyDefault": 650,
      "FrequencyMax": 1175,
      "FrequencyMin": 100,
      "FrequencyStepMax": 1000,
      "FrequencyStepMin": 5,
      "HealthAmpFactorDefault": 0.1,
      "HealthAmpFactorMax": 1,
      "HealthAmpFactorMin": 0.1,
      "HealthNumReadingsDefault": 1,
      "HealthNumReadingsMax": 10,
      "HealthNumReadingsMin": 1,
      "MinFansDefault": 1,
      "MinFansMax": 4,
      "MinFansMin": 0,
      "TemperatureHot": 85,
      "TemperatureMax": 200,
      "TemperatureMin": 0,
      "TemperaturePanic": 90,
      "TemperatureTarget": 80,
      "VoltageDefault": 8.890000343322754,
      "VoltageMax": 9.5,
      "VoltageMin": 8
      "VoltageStepMax": 10.0,
      "VoltageStepMin": 0.05
    }
  ],
  "STATUS": [
    {
      "Code": 331,
      "Description": "LUXminer 2023.1.10-u0-b5809987d4",
      "Msg": "Config parameter limits",
      "STATUS": "S",
      "When": 1673874142
    }
  ],
  "id": 1
}

Parameters

ParameterNotes
AtmMaxMinutesMaximum number of minutes for ATM parameter.
AtmMaxTempMaximum temperature value for ATM parameter.
AtmMinMinutesMinimum number of minutes for ATM parameter.
AtmMinTempMinimum temperature value for ATM parameter.
AtmPostRampDefaultDefault value for the ATM post-ramp timeout.
AtmStartupDefaultDefault value for the ATM startup timeout.
AtmTempWindowDefaultDefault value for the ATM temperature window.
FanSpeedDefaultRecommended fan speed.
FanSpeedMaxMaximum allowed fan speed.
FanSpeedMinMinimun defined fan speed.
FrequencyDefaultRecommended frequency for this model.
FrequencyMaxMaximum frequency value.
FrequencyMinMinimum frequency value.
FrequencyStepMaxMaximum frequency step value.
FrequencyStepMinMinimum frequency step value.
HealthAmpFactorDefaultRecommended amplified factor for health checking.
HealthAmpFactorMaxMaximum amplified factor for health checking.
HealthAmpFactorMinMinimum amplified factor for health checking.
HealthNumReadingsDefaultRecommended number of reading for health checking.
HealthNumReadingsMaxMaximum number of reading for health checking.
HealthNumReadingsMinMinimum number of reading for health checking.
MinFansDefaultRecomended number of active fans, at minimum.
MinFansMaxMaximum range for the minimum number of active fans.
MinFansMinMinimum range for the minimum number of active fans.
TemperatureHotRecommended "hot" temperature limit.
TemperatureMaxMaximum range of temperature values.
TemperatureMinMinimum range of temperature values.
TemperaturePanicRecommended "panic" temperature limit.
TemperatureTargetRecommended target temperature.
VoltageDefaultRecommended voltage value.
VoltageMaxMaximum voltage value.
VoltageMinMinimum voltage value.
VoltageStepMaxMaximum voltage step value.
VoltageStepMinMinimum voltage step value.