Skip to content

Instantly share code, notes, and snippets.

@valkheim
Created September 15, 2018 10:18
Show Gist options
  • Save valkheim/8e2cf872fc59c5527e4edaf0f49b1f4a to your computer and use it in GitHub Desktop.
Save valkheim/8e2cf872fc59c5527e4edaf0f49b1f4a to your computer and use it in GitHub Desktop.
#include <stdio.h>
#include <math.h>
char wav_to_char(const float f)
{
return "_,.-*`''"[(unsigned char)((f + 1.f) * (7.f / 2.f))];
}
int main(void)
{
float f;
for (f = 0.f; f < (8.f * M_PI ); f += (M_PI / 8.f))
putc(wav_to_char(sin(f)), stdout);
putc('\n', stdout);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment