OriginalCircuit.Electronics.TestEquipment
1.0.0
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
<PackageReference Include="OriginalCircuit.Electronics.TestEquipment" Version="1.0.0" />
paket add OriginalCircuit.Electronics.TestEquipment --version 1.0.0
#r "nuget: OriginalCircuit.Electronics.TestEquipment, 1.0.0"
// 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 | Versions 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. |
-
net6.0
- SixLabors.ImageSharp (>= 2.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Initial Release