Skip to content

Commit bb07a9c

Browse files
committed
Updated readme file
1 parent 7d6a325 commit bb07a9c

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

AslFastPin/README.md

+15-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
1-
IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported and tested. This means Arduino 1.6.5 and later.
1+
AslFastPin
2+
==========
23

4+
## Simple example
5+
6+
How quickly can you get up and running with the library? Here's a simple blink program:
7+
8+
#include <AslFastPin.h>
9+
using namespace asl;
10+
void setup() { FastPin<13>::setOutput(); }
11+
void loop() {
12+
FastPin<13>::hi(); delay(500);
13+
FastPin<13>::lo(); delay(500);
14+
}
315

4-
FastLED 3.1
5-
===========
616

717
## Supported platforms
818

@@ -18,3 +28,5 @@ Right now the library is supported on a variety of arduino compatable platforms.
1828
* Arduino Zero
1929
* ESP8266 using the arduino board definitions from http://arduino.esp8266.com/stable/package_esp8266com_index.json - please be sure to also read https://github.com/FastLED/FastLED/wiki/ESP8266-notes for information specific to the 8266.
2030
* The wino board - http://wino-board.com
31+
32+
IMPORTANT NOTE: For AVR based systems, avr-gcc 4.8.x is supported and tested. This means Arduino 1.6.5 and later.

0 commit comments

Comments
 (0)