grovepi/Software/CSharp/GrovePi/Sensors/Led.cs
2025-03-21 16:04:17 +01:00

16 lines
No EOL
360 B
C#

namespace GrovePi.Sensors
{
public interface ILed
{
SensorStatus CurrentState { get; }
ILed ChangeState(SensorStatus newState);
void AnalogWrite(byte value);
}
internal class Led : Sensor<ILed>, ILed
{
internal Led(IGrovePi device, Pin pin) : base(device, pin, PinMode.Output)
{
}
}
}