FirmwareAPI DocumentationLUXminer commands
profileget
Returns the details of a given profile
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":"default"}' | nc $MINER_IP 4028 | jqExamples
$ echo '{"command": "profileget", "parameter":"default"}' | nc $MINER_IP 4028 | jq
{
"BOARD": [
{
"Frequency": 300,
"ID": 2,
"Voltage": 8.692583312030031
},
{
"Frequency": 350,
"ID": 1,
"Voltage": 8.692583312030031
}
],
"PROFILE": [
{
"CanRestore": false,
"CanTune": false,
"Frequency": 650,
"Hashrate": 9.3,
"IsDynamic": true,
"IsTuned": false,
"Profile Name": "default",
"Step": "0",
"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:
| Field | Notes |
|---|---|
CanRestore | true if the profile was tuned and can be restored. |
CanTune | true if the profile can be tuned. |
Frequency | Profile default frequency. |
Hashrate | Estimated hashrate, in TH/s. |
IsDynamic | Returns true if the profile is dynamic. |
IsTuned | Deprecated. Always returns false; see the tuner events on events. |
Profile Name | Profile name. |
Step | The relative position of this profile, considering 'default' as zero. For user-created profiles, the value is always empty. |
Voltage | Default profile voltage. |
Watts | Estimated power usage, in watts. |
On the BOARD section:
| Field | Notes |
|---|---|
Frequency | Frequency to be used for a particular board. |
ID | ID of the board. |
Voltage | Voltage to be used for a particular board. |