blob: 36658e117157a3893f67eabc7fe15736621ea29f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
syntax = "proto3";
package Tango.PMR.MachineStatus;
option java_package = "com.twine.tango.pmr.machinestatus";
message IDSPackLevel
{
int32 Index = 1;
int32 DispenserLevel = 2;
double MidTankLevel = 3;
bool JerricanPresent = 4;
bool FillingTimeoutError = 5;
bool MidTankEmpty = 6;
bool MidTankRefillPumpActive = 7;
}
|