Luxor Documentation Hub Logo
Firmware/API Docs/LUXminer commands

profiles

Lists available profiles

profiles

Description

Lists the available profiles for this machine. Note that dynamic profiles are system generated and cannot be removed.

Command

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

Examples

$ echo '{"command": "profiles"}' | nc $MINER_IP 4028 | jq
{
  "PROFILES": [
      {
      "CanRestore": false,
      "Frequency": 450,
      "HasOverrides": false,
      "Hashrate": 9.3,
      "IsDynamic": true,
      "IsTuned": false,
      "Profile Name": "450MHz",
      "Step": "-1",
      "Voltage": 8.89,
      "Watts": 1022
    },
    {
      "CanRestore": false,
      "Frequency": 500,
      "HasOverrides": false,
      "Hashrate": 9.6,
      "IsDynamic": true,
      "IsTuned": false,
      "Profile Name": "default",
      "Step": "0",
      "Voltage": 8.89,
      "Watts": 1305
    },
    {
      "CanRestore": false,
      "Frequency": 750,
      "HasOverrides": false,
      "Hashrate": 16.1,
      "IsDynamic": true,
      "IsTuned": false,
      "Profile Name": "750MHz",
      "Step": "1",
      "Voltage": 9.2,
      "Watts": 1535
    }
  ],
  "STATUS": [
    {
      "Code": 323,
      "Description": "LUXminer 0.1.0-15436f7140",
      "Msg": "List profiles",
      "STATUS": "S",
      "When": 1667917088
    }
  ],
  "id": 1
}

Field details

FieldNotes
CanRestoretrue if the profile was tuned and can be restored.
FrequencyProfile default frequency.
HasOverridesIf true, the profile frequency may be different depending on the board. Use profileget to get more info on the profile.
HashrateEstimated hashrate, in TH/s.
IsDynamicReturns true if the profile is dynamic.
IsTunedDeprecated. Always returns false; see the tuner events on events.
Profile NameProfile name.
StepThe relative position of this profile, considering 'default' as zero. For user-created profiles, the value is always empty.
VoltageDefault profile voltage.
WattsEstimated power usage, in watts.

On this page