Files
2025-08-19 12:45:50 +02:00

7 lines
145 B
C#

namespace Inspectron.HawkEye.Protocol.Interfaces
{
public interface ILightControl
{
void SetLight(int pwm1, int pwm2);
}
}