Luxor Documentation Hub Logo
Firmware/API Documentation/LUXminer commands

psuset

Sets PSU configuration

psuset

Description

Sets the PSU (Power Supply Unit) configuration. The parameters are the session_id, followed by a comma-separated list of key-value pairs, in the format key=value. The available keys are:

  • bypass_enabled: either true or false to enable or disable PSU bypass mode.
  • bypass_voltage: the bypass voltage value. See limits for the allowed range (BypassVoltageMin to BypassVoltageMax).

You can specify only the keys you want to change, and it can be done in any order.

The current PSU configuration can be seen on the psuget command.

Note: After changing the bypass_enabled, the setting will only be applied after a system reboot.

Note: If autosave is disabled, the changes will be lost after a reboot.

Command

$ echo '{"command": "psuset", "parameter":"<session_id>,bypass_enabled=<true|false>,bypass_voltage=<value>"}' | nc $MINER_IP 4028 | jq

Examples

In this example, we enable bypass mode and set a bypass voltage of 13.5:

$ echo '{"command": "psuset", "parameter":"jKk8ljbU,bypass_enabled=true,bypass_voltage=13.5"}' | nc $MINER_IP 4028 | jq
{
  "STATUS": [
    {
      "Code": 362,
      "Description": "LUXminer 2026.2.2.200326-61240a682",
      "Msg": "PSU configuration updated",
      "STATUS": "S",
      "When": 1770063511
    }
  ],
  "id": 1
}

In the example below, we disable bypass mode:

$ echo '{"command": "psuset", "parameter":"jKk8ljbU,bypass_enabled=false"}' | nc $MINER_IP 4028 | jq
{
  "STATUS": [
    {
      "Code": 362,
      "Description": "LUXminer 2026.2.2.200326-61240a682",
      "Msg": "PSU configuration updated",
      "STATUS": "S",
      "When": 1770063511
    }
  ],
  "id": 1
}

Parameters

ParameterNotes
session_idA valid session ID. See Session Management for details.
paramsList of key-value parameters to change.

On this page