VAST_HID_INTEGRATOR 2.1.1
See the version list below for details.
dotnet add package VAST_HID_INTEGRATOR --version 2.1.1
NuGet\Install-Package VAST_HID_INTEGRATOR -Version 2.1.1
<PackageReference Include="VAST_HID_INTEGRATOR" Version="2.1.1" />
paket add VAST_HID_INTEGRATOR --version 2.1.1
#r "nuget: VAST_HID_INTEGRATOR, 2.1.1"
// Install VAST_HID_INTEGRATOR as a Cake Addin #addin nuget:?package=VAST_HID_INTEGRATOR&version=2.1.1 // Install VAST_HID_INTEGRATOR as a Cake Tool #tool nuget:?package=VAST_HID_INTEGRATOR&version=2.1.1
Sample usage code : #######################################################################################
using VAST_HID_INTEGRATOR;
namespace Test_form
{
public partial class Form1 : Form
{
HID_integration HID_ = new HID_integration();
private void Button1_Click(object sender, EventArgs e)
{
// debug : true , to see the inner outputs inside of the package.
// debug : false , to not debug and use package .
// User : registered username ; pass : registered password , for usage from only registered personnel
HID_.Connect(User,Pass,debug = true);
MessageBox.Show("Connected");
}
}
}
####################################################################################### In a nutshell , import the package , initialize class "HID_integration" instance , and call connect function Note: joystick should be connected before connect is called , connect doesn't implements notification events for detecting if joystick is attached or not , such integration will soon follow
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
-
- Newtonsoft.Json (>= 13.0.1)
- RabbitMQ.Client (>= 6.2.1)
- SharpDX.DirectInput (>= 4.2.0)
- System.Numerics.Vectors (>= 4.5.0)
- System.Runtime.CompilerServices.Unsafe (>= 5.0.0)
- System.Threading.Channels (>= 5.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
added a debug view to see the inner outputs on console