That works (thanks!)....but now I'm getting a tcConfigure(30720) was not declared in this scope (see below)....and after commenting that line below out, it pops up another "readCodes() not declared in this scope" message on another instruction....I'm attempting to simply compile TinyTV....what am I missing. -john
void setup(void) {
analogWrite(A0, analogRead(A0));//Set audio output to avoid picking up noise, even if audio isn't used
// tcConfigure(30720);
display.begin();
display.setBitDepth(1);
display.setFlip(true);
display.setFont(thinPixel7_10ptFontInfo);
display.initDMA();
irrecv.enableIRIn(); // Start the receiver
pinMode(RECV_PIN, INPUT_PULLUP);
SPI.begin();
delay(50);
if (!sd.begin(10, SPI_FULL_SPEED)) {
cardNotFound();
}
SPI.setClockDivider(0);
if (display.getButtons(TSButtonUpperRight)) {
delay(10);
if (display.getButtons(TSButtonUpperRight)) {
settingsMainMenu();
}
}
readCodes();
readSettings();
if (!fullVolume) {
volume = 3;
}