You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/06.Synthesis/NonAlias_MetaOscil/NonAlias_MetaOscil.ino
+32-9Lines changed: 32 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,27 @@
1
-
/* Example playing a sinewave at a set frequency,
1
+
/* Example using a MetaOscil to generate an alias free square wave on a sweep
2
2
using Mozzi sonification library.
3
3
4
-
Demonstrates the use of Oscil to play a wavetable.
4
+
Waveforms which are not only sines (Saw, square, triangle) are composed by a lot of harmonics which are at frequencies multiple of the fundamental frequency.
5
+
If the frequency of one of these harmonics is higher than half the sampling frequency (https://en.wikipedia.org/wiki/Nyquist_frequency) (AUDIO_RATE/2 here)
6
+
it will create "aliases" (https://en.wikipedia.org/wiki/Aliasing) which will sound out of tune are they not harmonically related to the fundamental.
7
+
The higher the pitch, the more harmonics are above the Nyquist limit and the more aliased will be present for a given waveform.
5
8
9
+
One way to avoid aliases is to use "band-limited" waveforms which have a limited sets of harmonics in order to avoid them to reach the Nyquist limit.
10
+
As these waveforms are band-limited they will sound less "crunchy" if they are used at frequencies lower than what they are meant to be because they
11
+
lack the high frequency contents.
12
+
13
+
In order to paliate that, a common technique is to "swap" wave tables on the fly in order to keep the frequency content up to the Nyquist frequency but
14
+
not above. This is the principal usage of MetaOscil.
15
+
16
+
MetaOscil can be used (after construction) as a proper Oscil but really is a bunch of oscillators with only one playing.
17
+
It will switch between different oscils seemlessly depending on the asked frequency. This allows to switch between oscillators with less
18
+
and less harmonics as the pitch goes up, in order to avoid aliases, which is demonstrated by this example.
19
+
20
+
The bandlimited tables are nammed according to the max frequency they can play without bringing aliases at a given frequency. For example:
21
+
square_max_90_at_16384_512_int8.h ensures that no aliases will be present up to 90Hz at 16384Hz sampling rate (the default for Arduino).
22
+
If your sampling rate is higher (say 32768 which is the default for most 32bits platforms) this table will be able to play up to
23
+
180=90*2Hz without aliases, as the Nyquist frequency is two times higher.
24
+
6
25
Circuit: Audio output on digital pin 9 on a Uno or similar, or
7
26
DAC/A14 on Teensy 3.1, or
8
27
check the README or http://sensorium.github.com/Mozzi/
// All the tables used for the MetaOscil need to be included
22
43
#include<tables/BandLimited_SQUARE/512/square_max_90_at_16384_512_int8.h>// band limited table that guarantee no alias up to a frequency of 90Hz at a sampling frequency of 16384 (or 180Hz at a sampling frequency of 32768Hz)
23
44
#include<tables/BandLimited_SQUARE/512/square_max_101_at_16384_512_int8.h>// band limited table that guarantee no alias up to a frequency of 101Hz at a sampling frequency of 16384
24
45
#include<tables/BandLimited_SQUARE/512/square_max_122_at_16384_512_int8.h>// band limited table that guarantee no alias up to a frequency of 122Hz at a sampling frequency of 16384
@@ -37,6 +58,7 @@
37
58
#include<tables/BandLimited_SQUARE/512/square_max_2730_at_16384_512_int8.h>// band limited table that guarantee no alias up to a frequency of 2730Hz at a sampling frequency of 16384
38
59
#include<tables/BandLimited_SQUARE/512/square_max_8192_at_16384_512_int8.h>// band limited table that guarantee no alias up to a frequency of 8192Hz at a sampling frequency of 16384 (this is basically a sine wave)
39
60
61
+
// The proper Oscillators that will be managed by the MetaOscil
40
62
// use: Oscil <table_size, update_rate> oscilName (wavetable), look in .h file of table #included above
// use: MetaOscil <table_size, update_rate, number_of_oscil> MetaoscilName. All oscils used should have the same table_size.
81
+
// use: MetaOscil <table_size, update_rate, number_of_oscil> MetaoscilName. All oscils used should have the same table_size and **have to be put in increasing order of cutoff_frequencies**.
#defineCONTROL_RATE256// Hz, powers of 2 are most reliable
@@ -67,7 +89,8 @@ int freq = 10;
67
89
68
90
69
91
voidsetup() {
70
-
// Set the cutoff frequencies for all the Oscil in the MetaOscil
92
+
// Set the cutoff frequencies for all the Oscil in the MetaOscil ie at which frequency the MetaOscil will switch to the next Oscillator. Note that these are the same frequencies than the tables names in this case.
93
+
// This have to follow the order given at the MetaOscil creation: this needs to be in increasing order.
0 commit comments