Firmware (LuxOS)
API Docs
LUXMiner commands
disableboard

disableboard

Description

Disables a specific board. This has no effect if the board is already disabled, and it does not turn the board off 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 enable a board with enableboard.

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

Command

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

Examples

$ echo '{"command": "disableboard", "parameter": "yJN2nlj1,1"}' | nc $MINER_IP 4028 | jq
{
  "DISABLEBOARD": [
    {
      "Board": 1,
      "Enabled": false
    }
  ],
  "STATUS": [
    {
      "Code": 342,
      "Description": "LUXminer 2023.8.15.175048-974682a",
      "Msg": "Board disabled",
      "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 false.