Files
2022-11-01 15:26:08 +00:00

11 lines
302 B
C#

using Microcontroller;
using TheXamlGuy.Framework.Core;
namespace TheXamlGuy.Framework.Microcontroller;
public record CapactiveSensor : IMicrocontrollerModule, ITwoStateSensor, IHasSensorPlacement
{
public SensorState State { get; init; }
public SensorPlacement Placement { get; init; }
}