CShock/CShocker/Shockers/OpenShockSerial.cs

18 lines
543 B
C#
Raw Normal View History

2024-01-17 04:11:30 +01:00
using CShocker.Shockers.Abstract;
using CShocker.Shockers.ShockerSettings;
using Microsoft.Extensions.Logging;
namespace CShocker.Shockers;
2024-01-17 04:36:38 +01:00
public class OpenShockSerial : SerialShocker
2024-01-17 04:11:30 +01:00
{
public OpenShockSerial(SerialShockerSettings shockerSettings, ILogger? logger = null) : base(shockerSettings, logger)
{
throw new NotImplementedException();
}
protected override void ControlInternal(ControlAction action, string shockerId, int intensity, int duration)
{
throw new NotImplementedException();
}
}