initial refactoring

This commit is contained in:
Sebastien L
2023-12-04 23:25:57 -05:00
parent d03678ea81
commit c0ddf0a997
331 changed files with 29663 additions and 16553 deletions

View File

@@ -0,0 +1,16 @@
syntax = "proto3";
package sys;
import "Network.proto";
import "Equalizer.proto";
import "nanopb.proto";
option (nanopb_fileopt).enum_to_string = true;
message State {
WifiSTAEntry connected_sta = 1;
Server lms = 2;
string ota_url = 3 [(nanopb).type = FT_POINTER];
string cspot_credentials = 4 [(nanopb).type = FT_POINTER];
int32 bt_sink_volume = 5 ;
Equalizer equalizer = 6;
}