Created
August 16, 2013 18:24
-
-
Save DenverDias/6252278 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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