Skip to content

Connection Test Routine Commands

This section lists the commands specific to the Connection Test routine.

Settings JSON

{
  "Device Name":"SMU",
  "Device_General":{
    "Mode":"Constant Voltage",
    "Sample Rate (S/s)":10,
    "Autorange":true
  },
  "Device_Specific":{
    "Current limit (A)":0.01,
    "Voltage Limit (V)":6
  }
}

Notes

device.specifc
The device.specific object changes based on the device.type selected:

"specific":{
  "current_compliance":0.02,  //in A
  "voltage_compliance":6,     //in V
  "sense":"4-wire"
}

"specific":{
  "port":"GPIB0::24::INSTR",
  "shutter":true,
  "remote_sense":true
}

"specific":{
  "port":"KE2600",
  "Hi-C Mode":0,
  "Sense":"4 Wire"
}


Data JSON

{"Voltage (V)":0,"Current (A)":0}

Custom Commands

Command Description
SetOutput Sets the voltage/current in their respective modes.

SetOutput

Description
Sets the voltage/current in their respective modes. This function only has an effect when the measurement is running

Example Request

{
  "target": "ROUTINE",
  "command": "SetOutput",
  "parameter": { "output": 0.123},
  "request_id": 201
}

Example Response

{
  "status": "OK",
  "data": { "state":"OK" },
  "request_id": 201
}