Plaquette
 
Loading...
Searching...
No Matches
PlaquetteLib.h
1/*
2 * PlaquetteLib.h
3 *
4 * (c) 2015 Sofian Audry :: info(@)sofianaudry(.)com
5 * (c) 2015 Thomas O Fredericks :: tof(@)t-o-f(.)info
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 */
20
21#ifndef PLAQUETTE_LIB_H_
22#define PLAQUETTE_LIB_H_
23
24#if (defined(ARDUINO) && ARDUINO >= 100) || defined(EPOXY_DUINO)
25#include <Arduino.h>
26#else
27#include <WProgram.h>
28#endif
29
30// Plaquette builtin defines.
31#include "pq_globals.h"
32#include "pq_time.h"
33
34// Plaquette builtin functions.
35#include "pq_constrain.h"
36#include "pq_map.h"
37#include "pq_print.h"
38#include "pq_random.h"
39#include "pq_wrap.h"
40
41// Core files.
42#include "PqCore.h"
43#include "PqInputs.h"
44#include "PqOutputs.h"
45
46// Basic set of extra components.
47#include "PqExtra.h"
48
49 #endif