Inital test (from beerduino, https://github.com/ilyevsky/beerduino) to establish protocol buffer communication between java and arduino powered by purejavacomm (https://github.com/nyholku/purejavacomm).

This commit is contained in:
2015-03-16 20:12:56 +00:00
commit 6cb5db6c10
10 changed files with 439 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package beerduino;
message Ping {
required int32 id = 1;
}
message Echo {
required int32 id = 1;
optional string message = 2;
}