Moved whole Arduino sketchbook to GIT (nothing interesting :-)
[mirrors/Programs.git] / arduino / FM_Jammer / FM_Jammer.pde
CommitLineData
a3a3e374
H
1/*
2 * Blink
3 *
4 * The basic Arduino example. Turns on an LED on for one second,
5 * then off for one second, and so on... We use pin 13 because,
6 * depending on your Arduino board, it has either a built-in LED
7 * or a built-in resistor so that you need only an LED.
8 *
9 * http://www.arduino.cc/en/Tutorial/Blink
10 */
11
12int Pin = 13; // LED connected to digital pin 13
13int
14
15void setup() // run once, when the sketch starts
16{
17 pinMode(Pin, OUTPUT); // sets the digital pin as output
18}
19
20void loop() // run over and over again
21{
22 delay(1);
23 digitalWrite(Pin, HIGH); // sets the LED onv
24 digitalWrite(Pin, LOW); // sets the LED offv
25}
This page took 0.108765 seconds and 4 git commands to generate.