voices.h 323 B

123456789101112131415161718192021
  1. #include <stdint.h>
  2. #include <stdbool.h>
  3. #include <avr/io.h>
  4. #include <util/delay.h>
  5. #include "musical_notes.h"
  6. #include "song_list.h"
  7. #ifndef VOICES_H
  8. #define VOICES_H
  9. float voice_envelope(float frequency);
  10. typedef enum {
  11. default_voice,
  12. butts_fader,
  13. octave_crunch
  14. } voice_type;
  15. void set_voice(voice_type v);
  16. #endif