Add PowerControl

Add NeptuneController support (kind of works)

Add Neptune controller directly from hidapi (to reduce rate of requests)

Add README
This commit is contained in:
Kamil Trzciński 2022-11-14 11:06:03 +01:00
parent 4d5c0cd466
commit b4c07be511
34 changed files with 2716 additions and 28 deletions

23
PowerControl/Program.cs Normal file
View file

@ -0,0 +1,23 @@
using PowerControl;
namespace PowerControl
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
using (var controller = new Controller())
{
Application.Run();
}
}
}
}