/// <inheritdoc/>
 public IMacroBoard Open()
 {
     return(StreamDeck.OpenDevice(DevicePath));
 }
 /// <inheritdoc/>
 public IMacroBoard Open(bool useWriteCache)
 {
     return(StreamDeck.OpenDevice(DevicePath));
 }
Beispiel #3
0
 /// <summary>
 /// Opens the StreamDeck handle
 /// </summary>
 /// <returns>Returns an <see cref="IStreamDeck"/> reference</returns>
 public IStreamDeck Open() => StreamDeck.OpenDevice(DevicePath);
Beispiel #4
0
 /// <summary>
 /// Opens the StreamDeck handle
 /// </summary>
 /// <returns>Returns an <see cref="IMacroBoard"/> reference</returns>
 public IStreamDeckBoard Open()
 => StreamDeck.OpenDevice(DevicePath, UseWriteCache);
Beispiel #5
0
 /// <summary>
 /// Opens the StreamDeck handle
 /// </summary>
 /// <returns>Returns an <see cref="IMacroBoard"/> reference</returns>
 public IMacroBoard Open() => StreamDeck.OpenDevice(DevicePath);