Skip to content

Instantly share code, notes, and snippets.

@dheeptuck
Last active December 16, 2019 17:14
Show Gist options
  • Save dheeptuck/52ed1bf5581799f06504b649a1474c86 to your computer and use it in GitHub Desktop.
Save dheeptuck/52ed1bf5581799f06504b649a1474c86 to your computer and use it in GitHub Desktop.
While(1)
{
if(GetTimeSinceLastOn() ≥ 30)
{
TurnPumpOn();
}
if(GetTimeSinceLastToggle() ≥ 5)
{
ToggleLights();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment