Mozzi  version v2.0
sound synthesis library for Arduino
Mozzi.h
Go to the documentation of this file.
1 /*
2  * Mozzi.h
3  *
4  * This file is part of Mozzi.
5  *
6  * Copyright 2012-2024 Tim Barrass and the Mozzi Team
7  *
8  * Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
9  *
10  */
11 
12 
13 /** @page basic_info Getting Started
14  *
15  * You are currently looking at the Mozzi API documentation. It is the most comprehensive source of all functions and
16  * classes available in Mozzi, but not necesarrily the best starting point for learning about Mozzi. For getting
17  * started, it is recommended to browse through the tutorials at https://sensorium.github.io/Mozzi/learn/ .
18  */
19 
20 /** @ingroup core
21  * @file Mozzi.h
22  *
23  * This is the main include file in Mozzi. Almost all sketches using Mozzi will want to include this file @em exactly once.
24  *
25  * Should your sketch require \ref core Mozzi functions in more than one translation unit (i.e. you have more than one .cpp-file
26  * in your sketch itself), only *one* of these shall include this file, while any others shall include \ref MozziHeadersOnly instead.
27  * (Failing to heed this advice will lead to "duplicate definition" errors.)
28  */
29 
30 #ifndef MOZZI_H_
31 #define MOZZI_H_
32 
33 #include "MozziGuts.h"
34 
35 #endif