The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Lab::Moose::Instrument::Zhinst - Base class for Zurich Instruments device drivers.

SYNOPSIS

METHODS

list_nodes

 my $nodes = $instr->list_nodes(path => $path, mask => $mask);

Call Lab::Zhinst ListNodes method.

get_value

 my $filter_order = $instr->get_value(path => "$device/demods/0/order", type => 'I');
 my $demod_hash = $instr->get_value(path => "$device/demods/0/sample", type => 'DemodSample');

Call Lab::Zhinst Get* method. Supported values for the $type argument: I (integer), D (double), B (byte array), Demod, DIO, AuxIn.

sync_set_value

 my $set_tc = $instr->sync_set_value(
     path => "$device/demods/0/timeconstant",
     type => 'D',
     value => '1.1',
 );

Call Lab::Zhinst SyncSet* method. Supported values for $type: I, D, B.