Compare commits
2 Commits
Author | SHA1 | Date |
---|---|---|
Holger Wirtz | 4a1ed44e75 | 6 years ago |
Holger Wirtz | dd2faa4797 | 6 years ago |
@ -0,0 +1,47 @@ |
|||||||
|
/*
|
||||||
|
MicroMDAEPiano |
||||||
|
|
||||||
|
MicroMDAEPiano is a port of the MDA-EPiano sound engine |
||||||
|
(https://sourceforge.net/projects/mda-vst/) for the Teensy-3.5/3.6 with audio shield.
|
||||||
|
|
||||||
|
(c)2019 H. Wirtz <wirtz@parasitstudio.de> |
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify |
||||||
|
it under the terms of the GNU General Public License as published by |
||||||
|
the Free Software Foundation; either version 3 of the License, or |
||||||
|
(at your option) any later version. |
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful, |
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
GNU General Public License for more details. |
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License |
||||||
|
along with this program; if not, write to the Free Software Foundation, |
||||||
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||||
|
|
||||||
|
*/ |
||||||
|
|
||||||
|
#include <Encoder.h> |
||||||
|
|
||||||
|
#ifndef ENCODER4_H_INCLUDED |
||||||
|
#define ENCODER4_H_INCLUDED |
||||||
|
|
||||||
|
class Encoder4 : public Encoder |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
using Encoder::Encoder; |
||||||
|
|
||||||
|
int32_t read() |
||||||
|
{ |
||||||
|
return (Encoder::read() / 4); |
||||||
|
} |
||||||
|
|
||||||
|
void write(int32_t p) |
||||||
|
{ |
||||||
|
Encoder::write(p * 4); |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
@ -0,0 +1,86 @@ |
|||||||
|
/*
|
||||||
|
MicroMDAEPiano |
||||||
|
|
||||||
|
MicroMDAEPiano is a port of the MDA-EPiano sound engine |
||||||
|
(https://sourceforge.net/projects/mda-vst/) for the Teensy-3.5/3.6 with audio shield.
|
||||||
|
|
||||||
|
(c)2019 H. Wirtz <wirtz@parasitstudio.de> |
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify |
||||||
|
it under the terms of the GNU General Public License as published by |
||||||
|
the Free Software Foundation; either version 3 of the License, or |
||||||
|
(at your option) any later version. |
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful, |
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
GNU General Public License for more details. |
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License |
||||||
|
along with this program; if not, write to the Free Software Foundation, |
||||||
|
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
||||||
|
*/ |
||||||
|
|
||||||
|
#ifndef LIQUIDCRYSTALPLUS_I2C_H_INCLUDED |
||||||
|
#define LIQUIDCRYSTALPLUS_I2C_H_INCLUDED |
||||||
|
|
||||||
|
#include <LiquidCrystal_I2C.h> // https://www.arduinolibraries.info/libraries/liquid-crystal-i2-c |
||||||
|
|
||||||
|
#define STRING_BUF_SIZE 21 |
||||||
|
|
||||||
|
class LiquidCrystalPlus_I2C : public LiquidCrystal_I2C |
||||||
|
{ |
||||||
|
public: |
||||||
|
|
||||||
|
using LiquidCrystal_I2C::LiquidCrystal_I2C; |
||||||
|
|
||||||
|
void show(uint8_t y, uint8_t x, uint8_t fs, char *str) |
||||||
|
{ |
||||||
|
_show(y, x, fs, str, false, false); |
||||||
|
} |
||||||
|
|
||||||
|
void show(uint8_t y, uint8_t x, uint8_t fs, long num) |
||||||
|
{ |
||||||
|
char _buf10[STRING_BUF_SIZE]; |
||||||
|
|
||||||
|
_show(y, x, fs, itoa(num, _buf10, 10), true, true); |
||||||
|
} |
||||||
|
|
||||||
|
private: |
||||||
|
void _show(uint8_t pos_y, uint8_t pos_x, uint8_t field_size, char *str, bool justify_right, bool fill_zero) |
||||||
|
{ |
||||||
|
{ |
||||||
|
char tmp[STRING_BUF_SIZE]; |
||||||
|
char *s = tmp; |
||||||
|
uint8_t l = strlen(str); |
||||||
|
|
||||||
|
memset(tmp, 0, sizeof(tmp)); |
||||||
|
if (fill_zero == true) |
||||||
|
memset(tmp, '0', field_size); |
||||||
|
else |
||||||
|
memset(tmp, 0x20, field_size - 1); // blank
|
||||||
|
|
||||||
|
if (l > field_size) |
||||||
|
l = field_size; |
||||||
|
|
||||||
|
if (justify_right == true) |
||||||
|
s += field_size - l; |
||||||
|
|
||||||
|
strncpy(s, str, l); |
||||||
|
|
||||||
|
setCursor(pos_x, pos_y); |
||||||
|
print(tmp); |
||||||
|
|
||||||
|
#ifdef DEBUG |
||||||
|
Serial.print(pos_y, DEC); |
||||||
|
Serial.print(F("/")); |
||||||
|
Serial.print(pos_x, DEC); |
||||||
|
Serial.print(F(": [")); |
||||||
|
Serial.print(tmp); |
||||||
|
Serial.println(F("]")); |
||||||
|
#endif |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
@ -0,0 +1,120 @@ |
|||||||
|
/* Modulated delay line
|
||||||
|
|
||||||
|
Inspired by; |
||||||
|
http://musicdsp.org/showArchiveComment.php?ArchiveID=154
|
||||||
|
|
||||||
|
But details changed for Teensy Audio. |
||||||
|
No feedback within the class, just done externally |
||||||
|
so we can add filters and stuff to the loop. |
||||||
|
|
||||||
|
Delay time is a signal input to the block, and functions from 0 to 0x7fff, |
||||||
|
scaling the delay time accordingly. |
||||||
|
*/ |
||||||
|
/*
|
||||||
|
Copyright (c) 2016, Byron Jacquot, SparkFun Electronics |
||||||
|
SparkFun code, firmware, and software is released under |
||||||
|
the MIT License(http://opensource.org/licenses/MIT).
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||||
|
of this software and associated documentation files (the "Software"), to deal |
||||||
|
in the Software without restriction, including without limitation the rights |
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||||
|
copies of the Software, and to permit persons to whom the Software is |
||||||
|
furnished to do so, subject to the following conditions: |
||||||
|
|
||||||
|
The above copyright notice, development funding notice, and this permission |
||||||
|
notice shall be included in all copies or substantial portions of the Software. |
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||||
|
THE SOFTWARE. |
||||||
|
|
||||||
|
|
||||||
|
*/ |
||||||
|
|
||||||
|
#include "mod-delay.h" |
||||||
|
|
||||||
|
#define INTERPOLATE (1) |
||||||
|
|
||||||
|
void AudioEffectModDelay::update(void) |
||||||
|
{ |
||||||
|
audio_block_t *audioblock, *controlblockDelay; |
||||||
|
int16_t *data, *end, *ctrlDelay; |
||||||
|
|
||||||
|
int32_t extract_index; |
||||||
|
|
||||||
|
#ifdef INTERPOLATE |
||||||
|
int32_t interp_delta; |
||||||
|
int32_t next; |
||||||
|
int16_t calc; |
||||||
|
#endif |
||||||
|
|
||||||
|
if (buffer_length == 0) |
||||||
|
return; |
||||||
|
|
||||||
|
audioblock = receiveWritable(0); |
||||||
|
if (!audioblock) return; |
||||||
|
|
||||||
|
controlblockDelay = receiveReadOnly(1); |
||||||
|
if (!controlblockDelay) { |
||||||
|
release(audioblock); |
||||||
|
return; |
||||||
|
} |
||||||
|
|
||||||
|
data = audioblock->data; |
||||||
|
end = audioblock->data + AUDIO_BLOCK_SAMPLES; |
||||||
|
|
||||||
|
ctrlDelay = controlblockDelay->data; |
||||||
|
|
||||||
|
do |
||||||
|
{ |
||||||
|
delayline_p[insert_index] = *data; |
||||||
|
insert_index++; |
||||||
|
if (insert_index >= buffer_length) |
||||||
|
{ |
||||||
|
insert_index = 0; |
||||||
|
} |
||||||
|
|
||||||
|
#ifdef INTERPOLATE |
||||||
|
interp_delta = (buffer_length * (*ctrlDelay)); |
||||||
|
delay_delta = (interp_delta >> 15); // MSB's for delay len
|
||||||
|
interp_delta &= 0x7fff; //LSBs for interp distance
|
||||||
|
#else |
||||||
|
delay_delta = (buffer_length * (*ctrlDelay)) >> 15; |
||||||
|
#endif |
||||||
|
|
||||||
|
extract_index = insert_index - delay_delta; |
||||||
|
|
||||||
|
if (extract_index < 0) |
||||||
|
{ |
||||||
|
extract_index = buffer_length + extract_index; |
||||||
|
} |
||||||
|
|
||||||
|
#ifdef INTERPOLATE |
||||||
|
// Use the fractional part to interpolate between samples
|
||||||
|
next = extract_index + 1; |
||||||
|
if (next >= buffer_length) |
||||||
|
{ |
||||||
|
next = 0; |
||||||
|
} |
||||||
|
|
||||||
|
calc = delayline_p[next] - delayline_p[extract_index]; |
||||||
|
calc = (calc * interp_delta ) >> 15; |
||||||
|
calc += delayline_p[extract_index]; |
||||||
|
|
||||||
|
*data = calc; |
||||||
|
#else |
||||||
|
*data = delayline_p[extract_index]; |
||||||
|
#endif |
||||||
|
|
||||||
|
data++; |
||||||
|
ctrlDelay++; |
||||||
|
} while (data < end); |
||||||
|
transmit(audioblock); |
||||||
|
release(audioblock); |
||||||
|
release(controlblockDelay); |
||||||
|
} |
@ -0,0 +1,89 @@ |
|||||||
|
/* Modulated delay line
|
||||||
|
|
||||||
|
Inspired by; |
||||||
|
http://musicdsp.org/showArchiveComment.php?ArchiveID=154
|
||||||
|
|
||||||
|
But details changed for Teensy Audio. |
||||||
|
No feedback within the class, just done externally |
||||||
|
so we can add filters and stuff to the loop. |
||||||
|
|
||||||
|
Delay time is a signal input to the block, and functions from 0 to 0x7fff, |
||||||
|
scaling the delay time accordingly. |
||||||
|
*/ |
||||||
|
/*
|
||||||
|
Copyright (c) 2016, Byron Jacquot, SparkFun Electronics |
||||||
|
SparkFun code, firmware, and software is released under |
||||||
|
the MIT License(http://opensource.org/licenses/MIT).
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||||
|
of this software and associated documentation files (the "Software"), to deal |
||||||
|
in the Software without restriction, including without limitation the rights |
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||||
|
copies of the Software, and to permit persons to whom the Software is |
||||||
|
furnished to do so, subject to the following conditions: |
||||||
|
|
||||||
|
The above copyright notice, development funding notice, and this permission |
||||||
|
notice shall be included in all copies or substantial portions of the Software. |
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
||||||
|
THE SOFTWARE. |
||||||
|
|
||||||
|
|
||||||
|
*/ |
||||||
|
|
||||||
|
/* from https://forum.pjrc.com/threads/46793-Anyone-Doing-Pitch-Shifting */ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#ifndef _mod_delay_h_ |
||||||
|
#define _mod_delay_h_ |
||||||
|
|
||||||
|
#include "AudioStream.h" |
||||||
|
#include <Arduino.h> |
||||||
|
|
||||||
|
class AudioEffectModDelay: public AudioStream |
||||||
|
{ |
||||||
|
public: |
||||||
|
AudioEffectModDelay (void) : AudioStream(2, inputQueueArray) |
||||||
|
{ |
||||||
|
buffer_length = 0; |
||||||
|
} |
||||||
|
|
||||||
|
virtual void update(void); |
||||||
|
|
||||||
|
// Set the parameters
|
||||||
|
void setbuf(int32_t delay_len, int16_t* delay_buf ) |
||||||
|
{ |
||||||
|
delayline_p = delay_buf; |
||||||
|
insert_index = 0; |
||||||
|
buffer_length = delay_len; |
||||||
|
|
||||||
|
memset(delayline_p, 0, buffer_length); |
||||||
|
}; |
||||||
|
|
||||||
|
void inspect(void) |
||||||
|
{ |
||||||
|
Serial.print(insert_index, HEX); |
||||||
|
Serial.print(' '); |
||||||
|
Serial.print(delay_delta, HEX); |
||||||
|
Serial.print(' '); |
||||||
|
Serial.println(buffer_length, HEX); |
||||||
|
|
||||||
|
}; |
||||||
|
|
||||||
|
private: |
||||||
|
audio_block_t *inputQueueArray[2]; |
||||||
|
|
||||||
|
int16_t *delayline_p; |
||||||
|
|
||||||
|
int32_t insert_index; |
||||||
|
int32_t buffer_length; |
||||||
|
int32_t delay_delta; |
||||||
|
}; |
||||||
|
|
||||||
|
#endif |
Loading…
Reference in new issue