itender/src/iTenderStatus.ts
Tobias Hopp c81713cd23 update
Took 15 hours 7 minutes
2022-11-17 00:46:19 +01:00

18 lines
606 B
TypeScript

export enum iTenderStatus {
// Machine is going to start
STARTING= "STARTING",
// Machine is ready
READY = "READY",
// Machine is filling your drink and destroying your leberwurst
FILLING = "FILLING",
// Drinks will be refreshed
REFRESHING = "REFRESHING",
// Drinks will be calculated (check containers and which drinks can be done)
CALCULATING = "CALCULATING",
// Download drinks from the world wide web
DOWNLOADING = "DOWNLOADING",
// Device is in setup mode for first setup
SETUP = "SETUP",
// An error happened; Oh no :(
ERROR = "ERROR"
}