We are hosting Hackster Cafe: Open Hardware Summit. Watch the stream live on Friday!We are hosting Hackster Cafe: Open Hardware Summit. Stream on Friday!
Lithium ION
Published © GPL3+

Arduino based Text to Speech convertor

A simple but interesting project, used a lot in our daily life. Let's make your own with simplest microcontroller unit by adding circuitry.

BeginnerFull instructions provided1 hour13,944
Arduino based Text to Speech convertor

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1

Software apps and online services

pcbway

Hand tools and fabrication machines

Breadboard, 400 Pin
Breadboard, 400 Pin
Premium Female/Male Extension Jumper Wires, 40 x 6" (150mm)
Premium Female/Male Extension Jumper Wires, 40 x 6" (150mm)

Story

Read more

Schematics

Circuit with LM386

Code

Code

Arduino
#include "Talkie.h"
#include "Vocab_US_Large.h"
#include "Vocab_Special.h"

Talkie voice;

void setup() {
}
void loop() {
    voice.say(spPAUSE2);
    voice.say(sp2_THE);
    voice.say(sp2_TIME);
    voice.say(sp3_IS);
    voice.say(sp3_FIVE);
    voice.say(sp3_OCLOCK);
    
}

Credits

Lithium ION
59 projects • 37 followers
A passionate electronics DIY boy. Currently improving in Embedded systems, soldering and programming.
Contact

Comments

Please log in or sign up to comment.