What problem does it solve?
This Skill provides a comprehensive C# driver for JY9810 Series Digitizers, solving the problem of efficient data acquisition and processing in high-speed applications.
Core Features & Use Cases
- High-Speed Data Acquisition: Supports data rates up to 125 MS/s with 4 channels, catering to various real-time data capture scenarios.
- Multi-Channel Sync: Facilitates synchronous sampling across multiple channels for complex measurement tasks.
- Trigger Configuration: Offers flexible trigger configurations, including digital, analog, and software triggers, for precise event triggering.
- Use Case: Ideal for developers needing to interface with JY9810 Digitizers for tasks such as waveforms recording, radio frequency signal analysis, and high-speed signal acquisition.
Quick Start
Load the JY9810.dll into your project, set up the AITask with appropriate board number, add channels, and start the acquisition. Example: JY9810AITask aiTask = new JY9810AITask(boardNumber); aiTask.AddChannel(0, -5, 5, AICoupling.DC, AIImpedance.ImpedanceHigh); aiTask.Mode = AIMode.Continuous; aiTask.SampleRate = 1000000; aiTask.Start();