Arduino-GPIO
General Purpose Input/Output (GPIO) library for Arduino
Blink.ino
Go to the documentation of this file.
1 #include "GPIO.h"
2 
4 
5 void setup()
6 {
7  led.output();
8 }
9 
10 void loop()
11 {
12  led = HIGH;
13  delay(1000);
14  led = LOW;
15  delay(1000);
16 }
void output()
Definition: GPIO.h:56
Definition: GPIO.h:31