A project for learning braille using FSR pt.3

Im learning more and more from this community, thank you so much. Im on the TTS part im currently being assisted by my friend in fixing the prior code. I want to use talkie in translating the letters into speech (Is this the correct way of using talkie?) I've also asked chatgpt in creating a template code for making talkie speak out of the speaker and this is what they've given to me:

#include <Talkie.h>

Talkie voice;

void setup() {
  // Initialize Talkie
  voice.say(" ");

  // Say a greeting
  speak("Hello, I am Arduino!");
}

void loop() {
  // Nothing here for this simple example
}

void speak(const char* sentence) {
  // Say the sentence
  voice.say(sentence);
  // Delay for a fixed time to ensure speech completes
  delay(2000); // Adjust as needed based on the length of the spoken sentence
}

Why have you created multiple topics for this project ?

Im sorry, i wanted to learn each part one by one since im only a beginner

But, you are making the whole project incoherent for anyone reading your threads!

Did she get it right, or fail again?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.