summaryrefslogtreecommitdiffstats
path: root/quantum/audio/voices.h
blob: 317f5d98c5ef7299a0b29035d6bbc6e2063b55d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdint.h>
#include <stdbool.h>
#include <avr/io.h>
#include <util/delay.h>
#include "musical_notes.h"
#include "song_list.h"

#ifndef VOICES_H
#define VOICES_H

float voice_envelope(float frequency);

typedef enum {
    default_voice,
    butts_fader,
    octave_crunch
} voice_type;

void set_voice(voice_type v);

#endif