This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" Assumes the input WAV file is mono (1 channel) with 16 bit samples """ | |
import sys | |
if len(sys.argv) != 2: | |
print("Wrong number of arguments.") | |
exit(); | |
filename = sys.argv[1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "ESP8266WiFi.h" | |
#include "i2s.h" | |
#include "i2s_reg.h" | |
#define RATE 44100 | |
#define SINE_SAMPLES 512 | |
const int c = 261; | |
const int d = 294; | |
const int e = 329; |