Paso 3: Sobre el código - On OFF complemento las voces
cuando desea hacer linkit uno decir cuando la lámpara se enciende o cuando recibes un mensaje entonces usa este código. Recuerde siempre usar "si" en el código, de lo contrario va continuamente a jugar los archivos de audio.
Mejoras que apreciada.
if((dtaget[0] == 'O' && dtaget[1] == 'N') || (dtaget[0] == 'o' && dtaget[1] == 'n')) { digitalWrite(pinLed, HIGH); LAudio.playFile( storageFlash,(char*)"turnedon.mp3"); //Playing LAudio.setVolume(5); Serial.println("playing - turnedon.mp3"); }else if((dtaget[0] == 'O' && dtaget[1] == 'F' && dtaget[2] == 'F') || (dtaget[0] == 'o' && dtaget[1] == 'f' && dtaget[2] == 'f')) { digitalWrite(pinLed, LOW); // lamp off LAudio.playFile( storageFlash,(char*)"turnedoff.mp3"); //Playing LAudio.setVolume(5); Serial.println("playing - turnedoff.mp3"); }