vibrato_lut.h 490 B

12345678910111213141516171819202122232425262728
  1. #include <avr/io.h>
  2. #include <avr/interrupt.h>
  3. #include <avr/pgmspace.h>
  4. #define VIBRATO_LUT_LENGTH 20
  5. const float VIBRATO_LUT[VIBRATO_LUT_LENGTH] = { \
  6. 1.00223368114872,
  7. 1.00425299436105,
  8. 1.00585842560279,
  9. 1.00689052852052,
  10. 1.0072464122237,
  11. 1.00689052852052,
  12. 1.00585842560279,
  13. 1.00425299436105,
  14. 1.00223368114872,
  15. 1,
  16. 0.99777129706302,
  17. 0.99576501699778,
  18. 0.994175695650927,
  19. 0.993156625943589,
  20. 0.992805720491269,
  21. 0.993156625943589,
  22. 0.994175695650927,
  23. 0.99576501699778,
  24. 0.99777129706302,
  25. 1
  26. };