FirmwareAPI DocumentationLUXminer commands
powertargetget
Read the current power target configuration
powertargetget
Description
Reads the current power-targeting configuration: the active power target, the power limit (ceiling), and the power minimum (floor). All values are returned in watts.
Use powertargetset to change these values.
Command
$ echo '{"command": "powertargetget"}' | nc $MINER_IP 4028 | jqExamples
$ echo '{"command": "powertargetget"}' | nc $MINER_IP 4028 | jq
{
"POWER": [
{
"Limit": 3500,
"Min": 2800,
"Target": 3320
}
],
"STATUS": [
{
"Code": 363,
"Description": "LUXminer 2026.5.22.201758-9e148a7ea",
"Msg": "Power target configuration values",
"STATUS": "S",
"When": 1779708462
}
],
"id": 1
}Field details
| Field | Notes |
|---|---|
Limit | The active power limit (ceiling), in watts. The AutoTuner will not exceed it. |
Min | The active power minimum (floor), in watts. 0 means the minimum is unbounded. |
Target | The wattage the AutoTuner is ramping to or actively maintaining. |