Skip to content

Instantly share code, notes, and snippets.

@loginov-rocks
Last active January 8, 2022 19:04
Show Gist options
  • Save loginov-rocks/4d169d05a190bed989a5177bbab5b3b2 to your computer and use it in GitHub Desktop.
Save loginov-rocks/4d169d05a190bed989a5177bbab5b3b2 to your computer and use it in GitHub Desktop.
DIY Connected Espresso Machine: Main Class and Indicators (Part 5) - EspressoMachineCommand
#ifndef EspressoMachine_h
#define EspressoMachine_h
enum class EspressoMachineCommand
{
Off,
// External commands.
PourWater,
StopPouringWater,
Boil,
MakeSteam,
CoolDown,
MakeCoffee,
// Internal commands.
ToggleBoil,
ToggleMakeSteam,
TogglePourWater,
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment