Skip to content

Instantly share code, notes, and snippets.

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