Firmware (LuxOS)
API Docs
LUXMiner commands
profileget

profileget

Description

Returns the details of a given profile, showing the default values in the PROFILE section, and the board-specific overrides in the BOARD section.

Command

$ echo '{"command": "profileget", "parameter":"custom"}' | nc $MINER_IP 4028 | jq

Examples

$ echo '{"command": "profileget", "parameter":"custom"}' | nc $MINER_IP 4028 | jq
{
  "BOARD": [
    {
      "Frequency": 300,
      "ID": 2,
      "Voltage": 8.692583312030031
    },
    {
      "Frequency": 350,
      "ID": 1,
      "Voltage": 8.692583312030031
    }
  ],
  "PROFILE": [
    {
      "CanRestore": false,
      "Frequency": 650,
      "Hashrate": 9.3,
      "IsDynamic": true,
      "IsTuned": false,
      "Profile Name": "custom",
      "Voltage": 8.9,
      "Watts": 898
    }
  ],
  "STATUS": [
    {
      "Code": 343,
      "Description": "LUXminer 2023.9.18.160152-40cdf0a",
      "Msg": "Profile details",
      "STATUS": "S",
      "When": 1695058376
    }
  ],
  "id": 1
}

Field details

On the PROFILES section:

FieldNotes
CanRestoretrue if the profile was tuned and can be restored.
FrequencyProfile default frequency.
HashrateEstimated hashrate, in TH/s.
IsDynamicReturns true if the profile is dynamic.
IsTunedReturns true if the profile is tuned.
Profile NameProfile name.
VoltageDefault profile voltage.
WattsEstimated power usage, in watts.

On the BOARD section:

FieldNotes
FrequencyFrequency to be used for a particular board.
IDID of the board.
VoltageVoltage to be used for a particular board.