Skip to content

Instantly share code, notes, and snippets.

@jazzyjackson
Last active October 26, 2015 14:35
Show Gist options
  • Save jazzyjackson/08a0f968f616e589ea8b to your computer and use it in GitHub Desktop.
Save jazzyjackson/08a0f968f616e589ea8b to your computer and use it in GitHub Desktop.
#include <PCM.h>
const unsigned char sample[] PROGMEM = {
128, 127, 128, 128, 128, 128 //...example sound
};
void setup()
{
startPlayback(sample, sizeof(sample));
}
void loop()
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment