Rigol DP800

RigolDP800 provides a driver that can be used to instantiate an InstroPSU.
Creating an InstroPSU with RigolDP800
RigolDP800 can be found in the SDK.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
A driver for InstroPSU

RigolDP800 provides a driver that can be used to instantiate an InstroPSU.
InstroPSU with RigolDP800from instro.psu.drivers import RigolDP800
from instro.psu import InstroPSU
psu = InstroPSU(
name="myPSU",
driver=RigolDP800(visa_resource="USB0::..."),
num_channels=3, # DP811 has 1, DP821 has 2, DP831/DP832 have 3
)
RigolDP800 can be found in the SDK.Was this page helpful?