CommandType.cs 183 B

1234567891011
  1. namespace FunnyCommon.Remoting.Protocol
  2. {
  3. public enum CommandType : byte
  4. {
  5. AllocateGpio,
  6. FreeGpio,
  7. SetHeight,
  8. SetLow,
  9. Sleep,
  10. }
  11. }