Firmware (LuxOS)
API Docs
LUXMiner commands
enableboard

enableboard

Description

Enables a specific board. This has no effect if the board is already enabled, and it does not turn the board on automatically. By default, all boards are enabled; a disabled board just ensures that it is not automatically started after a boot.

Note that you are allowed to refer to a board that were not detected/connected in this command.

You can disable a board with disableboard.

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

Command

$ echo '{"command": "enableboard", "parameter": "yJN2nlj1,1"}' | nc $MINER_IP 4028 | jq

Examples

$ echo '{"command": "enableboard", "parameter": "yJN2nlj1,1"}' | nc $MINER_IP 4028 | jq
{
  "ENABLEBOARD": [
    {
      "Board": 1,
      "Enabled": true
    }
  ],
  "STATUS": [
    {
      "Code": 342,
      "Description": "LUXminer 2023.8.15.175048-974682a",
      "Msg": "Board enabled",
      "STATUS": "S",
      "When": 1692195596
    }
  ],
  "id": 1
}

Parameters

ParameterNotes
session_idA valid session ID. See Session Management for details.
board_idNumeric ID of the board. This ccan refer to a non-detected board.

Field details

FieldNotes
BoardThe board ID, starting from zero.
EnabledAlways true.