Skip to content

Instantly share code, notes, and snippets.

@YutaWatanabe
Created December 3, 2014 03:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save YutaWatanabe/11f2fcdb6f735f3ef2e5 to your computer and use it in GitHub Desktop.
Save YutaWatanabe/11f2fcdb6f735f3ef2e5 to your computer and use it in GitHub Desktop.
LED Blink Once
public partial class Program
{
void ProgramStarted()
{
Debug.Print("Program Started");
button.ButtonPressed += button_ButtonPressed;
}
void button_ButtonPressed(Button sender, Button.ButtonState state)
{
multicolorLED.BlinkOnce(GT.Color.Blue);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment