glax
ac19e20fb7
Get OpenShock Shockers from API. Save Shockers for PiShock and OpenShock in different structs Implement Action Queue, to avoid synchronous actions getting lost. Moved SerialPortInfo to own file Created ShockerJsonConverter Better separation of Devices/APIs and Shockers
12 lines
382 B
C#
12 lines
382 B
C#
using CShocker.Devices.Additional;
|
|
using CShocker.Ranges;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace CShocker.Devices.Abstract;
|
|
|
|
public abstract class PiShockDevice : Device
|
|
{
|
|
protected PiShockDevice(IntensityRange intensityRange, DurationRange durationRange, DeviceApi apiType, ILogger? logger = null) : base(intensityRange, durationRange, apiType, logger)
|
|
{
|
|
}
|
|
} |