Plaquette
 
Loading...
Searching...
No Matches
PqExtra.h
1/*
2 * PqExtra.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 PQ_EXTRA_H_
22#define PQ_EXTRA_H_
23
24// Base.
25#include "PqCore.h"
26#include "MovingAverage.h"
27#include "MovingStats.h"
28
29// Filters.
30#include "MinMaxScaler.h"
31#include "Normalizer.h"
32#include "PeakDetector.h"
33#include "Smoother.h"
34
35// Stream.
36#include "StreamIn.h"
37#include "StreamOut.h"
38
39// Timing.
40#include "Alarm.h"
41#include "Chronometer.h"
42#include "Metronome.h"
43#include "Ramp.h"
44
45// Fields.
46#include "PivotField.h"
47#include "TimeSliceField.h"
48
49// Generators.
50#include "SineWave.h"
51#include "SquareWave.h"
52#include "TriangleWave.h"
53#include "Wave.h"
54
55// Servo motors.
56#include <PqServo.h>
57
58#endif