embed1 Reference Manual
 All Files Functions Pages
LocalLibrary.h
Go to the documentation of this file.
1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
22 // Core library - IDE-based
23 #if defined(MPIDE) // chipKIT specific
24 #include "WProgram.h"
25 #elif defined(DIGISPARK) // Digispark specific
26 #include "Arduino.h"
27 #elif defined(ENERGIA) // LaunchPad, FraunchPad and StellarPad specific
28 #include "Energia.h"
29 #elif defined(MAPLE_IDE) // Maple specific
30 #include "WProgram.h"
31 #elif defined(CORE_TEENSY) // Teensy specific
32 #include "WProgram.h"
33 #elif defined(WIRING) // Wiring specific
34 #include "Wiring.h"
35 #elif defined(ARDUINO) && (ARDUINO >= 100) // Arduino 1.0x and 1.5x specific
36 #include "Arduino.h"
37 #elif defined(ARDUINO) && (ARDUINO < 100) // Arduino 23 specific
38 #include "WProgram.h"
39 #endif // end IDE
40 
41 #ifndef embed1_LocalLibrary_h
42 #define embed1_LocalLibrary_h
43 
52 void blink(uint8_t pin, uint8_t times, uint16_t ms);
53 
54 #endif