public bool SetCharacterPattern(char character, PulseColor foreground, PulseColor background, bool inlcudeSlave) { if (!IsConnectMasterDevice) { return(false); } int foregroundColor = WebColorHelper.RGBToWeb216Index(foreground); int backgroundColor = WebColorHelper.RGBToWeb216Index(background); SppCmdHelper.SetCharacterPattern(character, foregroundColor, backgroundColor, inlcudeSlave); return(Convert.ToBoolean(true)); }
public void SetLedAndSoundFeedback(int devIndex) { SppCmdHelper.reqLEDAndSoundFeedback(devIndex); }