Using the FLITE TTS Engine with the AI Thinker Audio Kit
As you might know from my last posts I am currently extending my Arduino Audio Tools library to support the AI Thinker Audio Kit which is based on the ES8388 audio chip. . I thought it might be helpful to have a ‘Text to Speech’ example for the Audio Kit. In this example I am using FLITE. The Arduino Sketch #include “flite_arduino.h” #include “AudioTools.h” #include “AudioDevices/ESP32AudioKit/AudioKit.h” using namespace audio_tools; AudioKitStream kit; Flite flite(kit); const char* Read more