UXAV.AVnet.QSys 2.0.0-beta-2

This is a prerelease version of UXAV.AVnet.QSys.
dotnet add package UXAV.AVnet.QSys --version 2.0.0-beta-2
NuGet\Install-Package UXAV.AVnet.QSys -Version 2.0.0-beta-2
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="UXAV.AVnet.QSys" Version="2.0.0-beta-2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add UXAV.AVnet.QSys --version 2.0.0-beta-2
#r "nuget: UXAV.AVnet.QSys, 2.0.0-beta-2"
#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 UXAV.AVnet.QSys as a Cake Addin
#addin nuget:?package=UXAV.AVnet.QSys&version=2.0.0-beta-2&prerelease

// Install UXAV.AVnet.QSys as a Cake Tool
#tool nuget:?package=UXAV.AVnet.QSys&version=2.0.0-beta-2&prerelease

<p align="center"> <img src="avnet_logo.svg"> </p>

<h1 align="center">AVnet QSys Library</a></h1>

<p align="center">An open-source QSys Library for use in AVnet Framework</p>

<p align="center"> <img alt="Status" src="https://img.shields.io/github/actions/workflow/status/uxav/UXAV.AVnet.QSys/test.yml?branch=main&style=flat&logo=github&label=status"> <img alt="NuGet Version" src="https://img.shields.io/nuget/v/UXAV.AVnet.QSys?style=flat&logo=nuget"> <img alt="Downloads" src="https://img.shields.io/nuget/dt/UXAV.AVnet.QSys?style=flat&logo=nuget"> <img alt="Issues" src="https://img.shields.io/github/issues/uxav/UXAV.AVnet.QSys?style=flat&logo=github"> <img alt="Pull Requests" src="https://img.shields.io/github/issues-pr/uxav/UXAV.AVnet.QSys?style=flat&logo=github"> <img alt="Licnse" src="https://img.shields.io/github/license/uxav/UXAV.AVnet.QSys?style=flat"> </p>

Index

Quick Start

To use this test library in your project, follow these steps:

  1. Install the package via NuGet. You can use the following command in the Package Manager Console:

     dotnet add [<PROJECT>] package UXAV.AVnet.QSys
    
  2. Import the library classes in your code file(s):

    // Import QSys from AVnet
    using UXAV.AVnet.QSys;
    using UXAV.AVnet.QSys.Components;
    
  3. Use the following to control a core:

    // create an instance of a core
    _dsp = new QSysCore("My Core", "192.168.10.10");
    
    // listen for the HasInitialized event trigger
    _dsp.HasInitialized += (sender, args) =>
    {
       // core instance should now have all components listed with external script access
       // get a component such as a gain block
       _myGain = _dsp.GetComponent<GainComponent>("Test.Gain");
       // listen for changes on the gain block
       _myGain.Change += (o, eventArgs) =>
       {
          Logger.Log($"Gain changed to {_myGain.Gain.String}");
       };
       // in order for the core to emit changes you need to call auto poll on a change group
       // the default internal group contains all components or just create your own change group
       _dsp.ChangeGroups.Default.AutoPoll(0.5);
    };
    

GitHub Repository: UXAV.AVnet.QSys

NuGet Package: UXAV.AVnet.QSys

Dependencies

Release Notes

v2.0.0

  • Reconfigured workspace to new style SDK format and added support for .NET 6.0

Contributing

Contributions are welcome! If you would like to contribute to this project, please follow these guidelines:

  1. Fork the repository.
  2. Create a new branch for your feature or bug fix.
  3. Make your changes and commit them.
  4. Push your changes to your forked repository.
  5. Submit a pull request to the main repository.

Please ensure that your code follows the project's coding conventions and includes appropriate tests.

  • For feature branches use the name feature/feature-name
  • Version numbers are checked against existing tags and fail CI on match

Thank you for your interest in contributing to this project!

License

This project is licensed under the MIT License.

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 is compatible.  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. 
.NET Framework net472 is compatible.  net48 was computed.  net481 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
2.0.0-beta-2 59 3/18/2024
2.0.0-beta-1 52 3/18/2024