Skip to content

Instantly share code, notes, and snippets.

@cewbdex
Created June 18, 2018 17:10
Show Gist options
  • Save cewbdex/b63e33be000795f10d5d457d3009f4b5 to your computer and use it in GitHub Desktop.
Save cewbdex/b63e33be000795f10d5d457d3009f4b5 to your computer and use it in GitHub Desktop.
Part for testing ALKS - unused
if(digitalRead(SW1) == LOW && digitalRead(SW3) == LOW)
{
if(!beeping)
{
beeping = true;
toneAC(440);
}
}
else
{
if(beeping)
{
beeping = false;
toneAC(0);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment