aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/MachineStatus/IDSPackLevel.proto
blob: a8336c3332d90c44cd0f49908727aea300f08765 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
syntax = "proto3";

import "PumpStatus.proto";

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;

	int32 TimerRemainingSeconds = 8;

	//Used only for X4
	int64 DispenserLevel64 = 9;
	float TotalPumpFlow = 10;
	uint32 TotalPumpActivityTime = 11;

	repeated PumpStatus Pumps = 12;
}