You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: AslFastPin/README.md
+15-3
Original file line number
Diff line number
Diff 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
+
==========
2
3
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
+
}
3
15
4
-
FastLED 3.1
5
-
===========
6
16
7
17
## Supported platforms
8
18
@@ -18,3 +28,5 @@ Right now the library is supported on a variety of arduino compatable platforms.
18
28
* Arduino Zero
19
29
* 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.
20
30
* 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