Various updates

This commit is contained in:
Wesley Hofman
2025-09-15 20:24:09 +02:00
parent 9292dcfad5
commit 14e8e2f267
18 changed files with 1241 additions and 483 deletions

16
HTOLHAST/SwitchMatrix.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HTOLHAST
{
public class SwitchMatrix
{
public int Channel { get; set; }
public int SW1 { get; set; }
public int SW2 { get; set; }
public int SW3 { get; set; }
}
}