Firmware (LuxOS)
API Docs
LUXMiner commands
voltageget

voltageget

Description

Returns the current voltage of a board.

Command

$ echo '{"command": "voltageget", "parameter": "0"}' | nc $MINER_IP 4028 | jq

Examples

$ echo '{"command": "voltageget", "parameter": "0"}' | nc $MINER_IP 4028 | jq
{
  "STATUS": [
    {
      "Code": 307,
      "Description": "LUXminer 0.1.0-15436f7140",
      "Msg": "Get Voltage",
      "STATUS": "S",
      "When": 1667917088
    }
  ],
  "VOLTAGE": [
    {
      "Board": 0,
      "Voltage": 8.903821789315824
    }
  ],
  "id": 1
}

Parameters

ParameterNotes
board_idBoard ID, starting from zero.

Field details

FieldNotes
BoardThe board_id, same as the input parameter.
VoltageThe voltage value of that board.