OriginalCircuit.Electronics.TestEquipment 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package OriginalCircuit.Electronics.TestEquipment --version 1.0.0
NuGet\Install-Package OriginalCircuit.Electronics.TestEquipment -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OriginalCircuit.Electronics.TestEquipment" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OriginalCircuit.Electronics.TestEquipment --version 1.0.0
#r "nuget: OriginalCircuit.Electronics.TestEquipment, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OriginalCircuit.Electronics.TestEquipment as a Cake Addin
#addin nuget:?package=OriginalCircuit.Electronics.TestEquipment&version=1.0.0

// Install OriginalCircuit.Electronics.TestEquipment as a Cake Tool
#tool nuget:?package=OriginalCircuit.Electronics.TestEquipment&version=1.0.0

.NET Networked Test Equipment Library

This library allows you to easily connect to and control your electronics test equipment over a network connection. It is implemented entirely in native .NET, so it does not require any additional equipment libraries or vendor specific DLLs. The library can be used on all platforms that support .NET, including Windows, Mac, Linux, and embedded systems.

Using this library, you can perform a variety of tasks such as sending commands, reading measurements, and configuring settings on your test equipment. It is designed to be easy to use, with a straightforward API and detailed documentation to help you get started.

Supported Equipment

Currently, the following equipment is supported:

  • Rigol MSO5000 Series Oscilloscopes
  • Rigol DP800 Series Power Supplies
  • Rigol DL3000 Series DC Loads

However, the code should work with most oscilloscopes/supplies/loads with most functions.

Using the Library

Connecting to a power supply instrument and setting the output to 3.3V:

var dp800a = new RigolDP800Instrument();
await dp800a.Connect("10.0.0.132");

Console.WriteLine($"Connected to {dp800a.InstrumentType.Manufacturer} {dp800a.InstrumentType.Model}");

await dp800a.SelectChannel(Channel.CH1);
await dp800a.Output.Disable();
await dp800a.Voltage.Set(3.3);
await dp800a.WaitForOperationComplete(1);
await dp800a.Output.Enable();
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.7 258 4/15/2023
1.0.6 192 3/21/2023
1.0.5 214 3/19/2023
1.0.4 267 2/5/2023
1.0.3 276 1/20/2023
1.0.2 280 1/20/2023
1.0.1 279 1/20/2023
1.0.0 279 12/29/2022

Initial Release