From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

$Lab::Moose::Instrument::Keysight34470A::VERSION = '3.930';
#ABSTRACT: Keysight 34470A digital multimeter.
use v5.20;
use strict;
use Moose;
around default_connection_options => sub {
my $orig = shift;
my $self = shift;
my $options = $self->$orig();
my $usb_opts = { vid => 0x2a8d, pid => 0x0201 };
$options->{USB} = $usb_opts;
$options->{'VISA::USB'} = $usb_opts;
return $options;
};
__PACKAGE__->meta()->make_immutable();
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Lab::Moose::Instrument::Keysight34470A - Keysight 34470A digital multimeter.
=head1 VERSION
version 3.930
=head1 DESCRIPTION
Inherits from L<Lab::Moose::Instrument::HP34410A>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2025 by the Lab::Measurement team; in detail:
Copyright 2018 Simon Reinhardt
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut