public void SetState(LedState ledState) => State = ledState;
public LedController(string label, LedColor ledColor = LedColor.Amber) { Label = label; Color = ledColor; State = new LedState(false); }