aboutsummaryrefslogtreecommitdiffstats
path: root/Software/PMR/Messages/Power/PowerUpState.proto
blob: 1cbb80fd25378601c948295bc397410bfb33091a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
syntax = "proto3";

package Tango.PMR.Power;
option java_package = "com.twine.tango.pmr.power";

enum PowerUpState
{
	//Fill the states.
	None = 0;
	Init = 1;
	HwConfig = 2;
	BuiltInTest = 3;
	InitialBlowerActivation = 4;
	WaitForCooler = 5;
	DispenserPressureBuildupTest = 6;
	ThreadDetection = 7;
	HeatingStarted = 8;
	MachineReadyToDye = 9;
	Error = 10;
	Cancelled = 11;
}