Skip to content

Instantly share code, notes, and snippets.

@DenverDias
Created August 16, 2013 18:24
Show Gist options
  • Save DenverDias/6252278 to your computer and use it in GitHub Desktop.
Save DenverDias/6252278 to your computer and use it in GitHub Desktop.
void setup()
{
Serial.begin(9600);
/* Using the serial command I program the Arduino to communicate at a baud rate of 9600 bits per second. */
pinMode(tonePin, OUTPUT);
// This command sets the pin to act as output
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment