Mozzi  version 2015-05-11-20:23
sound synthesis library for Arduino
 All Classes Functions Typedefs Groups
mozzi_config.h
1 #ifndef MOZZI_CONFIG_H
2 #define MOZZI_CONFIG_H
3 
4 /*
5 Edit this file if you want to choose your own configuration options.
6 */
7 
8 
26 //#define AUDIO_MODE STANDARD
27 #define AUDIO_MODE STANDARD_PLUS
28 //#define AUDIO_MODE HIFI
29 
30 
61 #define AUDIO_RATE 16384
62 //#define AUDIO_RATE 32768
63 
64 
65 
71 #define USE_AUDIO_INPUT false
72 
73 
74 
80 #if defined(__MK20DX128__) || defined(__MK20DX256__) // teensy 3, 3.1
81 #define AUDIO_INPUT_PIN 0
82 #else
83 #define AUDIO_INPUT_PIN 0
84 #endif
85 
86 //AUDIO_INPUT_CHANNEL = analogPinToChannel(AUDIO_INPUT_PIN)
87 #endif // #ifndef MOZZI_CONFIG_H
88