GPIO.proto 427 B

1234567891011121314151617
  1. syntax = "proto3";
  2. package sys.gpio;
  3. import "nanopb.proto";
  4. option (nanopb_fileopt).enum_to_string = true;
  5. enum lvl {
  6. LOW = 0;
  7. HIGH = 1;
  8. }
  9. // GPIO to use for the specified function
  10. message config {
  11. option (nanopb_msgopt).packed_struct = true;
  12. option (nanopb_msgopt).msgid = 10130;
  13. int32 pin = 1 [(nanopb).int_size = IS_8]; // a valid esp32 gpio pin that supports the intended mode
  14. lvl level = 2 ; // 0 or 1
  15. }