All Projects → ArminJo → Talkie

ArminJo / Talkie

Licence: GPL-3.0 license
Refurbished Arduino version of the Talkie library from Peter Knight.

Programming Languages

C++
36643 projects - #6 most used programming language
c
50402 projects - #5 most used programming language

Talkie

Available as Arduino library "Talkie"

Version 1.3.1

License: GPL v3 Installation instructions Commits since latest Build Status Hit Counter

Speech library for Arduino

The original version can be found here.
A good explanation of the TMS5220 operation and the LPC frame format can be found here.

YouTube Demonstration of Talkie voltmeter example

Demonstration of Talkie voltmeter example

YouTube Intoduction by Gadget Reboot

Intoduction by Gadget Reboot

Improvements to the original and to the non blocking version of PaulStoffregen

  • Improved code so Talkie now runs on 8 MHz Arduino (with millis() interrupt disabled while talking).
  • Fixed the ISR_RATIO Bug for plain Arduino.
  • Added utility functions sayQNumber(), sayQFloat(), sayQVoltageMilliVolts() extracted from the examples.
  • Inverted output at pin 11 is enabled by default to increase volume for direct attached piezo or speaker.
  • Added comments and did refactoring to better understand the functionality.
  • Added compatibility to Arduino Tone library by stopping timer1 interrupts at every end of speech.
  • Extracted initializeHardware() and terminateHardware() functions for easy adapting to other platforms.
  • Currently supporting:
    • ATmega328 as found on the Uno and Nano boards.
    • ATmega2560 as found on the MEGA 2560 board.
    • ATmega32U4 as found on the Leonardo and CircuitPlaygound boards.
    • ARM M0 (Tested for Arduino Zero) as found on the SAMD, Teensy and Particle boards.
    • ESP32. ESP8266 is theoretical possible using FRC2, but for now Arduino shares the FRC1 timer between interrupts and PWM.
    • ARM M3 (Tested for BluePill) for Roger Clarks as well as STM core.

Pin mapping table for different platforms

Platform Normal Inverted 8kHz timer PWM timer Remarks
AVR (Uno and Nano) 3 11 1 2
ATmega2560 6/PH3 7/PH4 1 4
Leonardo 9/PB5 10/PB6 1 4
ProMicro 5/PC6 % 1 4
Esplora 6/PD7 % 1 4
Zero (SAMD) A0 % TC5 DAC0
ESP32 25 % hw_timer_t DAC0
BluePill 3 % timer3 analogWrite Roger Clarks core
BluePill PA3 % timer4 analogWrite STM core
Teensy 12/14721 % IntervalTimer analogWrite

Timer usage

Timer 1 (Servo timer) is used at all ATmegas for updating voice output data at 8 kHz. Timer 2 (Tone timer) on ATmega328 (62500 Hz / 16 µs) and Timer 4 on ATmega2560 + ATmega32U4 (5 µs) is used to generate the 8 bit PWM output.

Hints

  • As default both inverted and not inverted outputs are enabled to increase volume if speaker is attached between them.
  • The library uses Timer 1 and Timer 2 on ATmega328, so libraries like Tone, Servo, analogWrite(), and some other libraries cannot be used while speaking.
  • After a call to say...() you can use tone() again.
  • using [Sloeber]ervo write() after a call to say... you must detach() and attach() the servo before first write() in order to initialize the timer again for Servo.
  • If you want to use SPI functions on ATmega328 while Talkie is speaking, then disable Talkies usage of pin 11 by Talkie Voice(true, false); instead of Talkie Voice; or Voice.doNotUseInvertedOutput();.
  • Porting to ATtinys is not possible, since they lack the hardware multiplication. ( Believe me, I tried it! )
  • I use the speakers from old earphones or headphones, which have approximately 16 to 32 Ohm, directly without a series resistor on my ATmegas. The headphone speaker tend to be much louder, especially when they stay in their original housings. If you do not connect the speaker between non inverted and inverted output, you must use a series capacitor of 1 to 10 uF do block the DC current. Look for the right polarity. The AC current is proportional to the rectance of the speaker, not its resistance in Ohm, and it is between 10 and 40 mA. The latter is definitely out of specification for ATmegas but quite loud -what you hear is what you supply- and running for hours on my desk. If you are not sure, just use a piezo speaker or a power amplifier.

Predefined vocabulary

The predefined vocabulary can be found in the Vocab_*.h files, especially in Vocab_US_Large.h.

Own vocabulary

To create LPC data you can use the python_wizard like described here or the BlueWizard for Mac OS X.

Another way to create LPC data is to use Qboxpro, an unsupported old Windows application running under XP, which can produce Talkie compatible data streams. The missing BWCC.DLL (Borland Windows Custom Control Library) can be found e.g. here. The process is described here and goes like this:

  • Create a new project using the following project parameters : byte / 8 KHz / 5220 coding table
  • Goto Project and add the audio file
  • Choose process using : medium bit rate and pressing OK
  • Edit concatenation : insert concatenation after by adding a name; then insert phrase and press OK
  • Format it by choosing the first line in the format menu : LPC 10V, 4UV

Schematic for voltmeter example

Fritzing schematic for voltmeter example

OUTPUT FILTER

    C to avoid clicks  Low pass 1600Hz  DC decoupling (optional)
                      _____
  D3 >------||-------| 10k |---+----------||-------> to Power amplifier
           100nF      -----    |         10nF
                              ---
                              --- 10 nF
                               |
                               |
                               _ GND

Compile options / macros for this library

To customize the software to different requirements, there are some compile options / macros available.
Modify them by enabling / disabling them, or change the values if applicable.

Name Default value File Description
NO_COMPATIBILITY_FOR_TONE_LIB_REQUIRED disabled Talkie.h If you do not use the Arduino Tone library, then activating can save up to 844 bytes program size.
FAST_8BIT_MODE disabled Talkie.h If defined we use 8bit instead of 16 bit coefficients K1 and K2. This saves 10 microseconds (40 instead of 50 us) for a 16 MHz ATmega and has almost the same quality, except of a few "dropouts" e.g. in the word "thousand".

Changing include (*.h) files with Arduino IDE

First, use Sketch > Show Sketch Folder (Ctrl+K).
If you have not yet saved the example as your own sketch, then you are instantly in the right library folder.
Otherwise you have to navigate to the parallel libraries folder and select the library you want to access.
In both cases the library source and include files are located in the libraries src directory.
The modification must be renewed for each new library version!

Modifying compile options / macros with PlatformIO

If you are using PlatformIO, you can define the macros in the platformio.ini file with build_flags = -D MACRO_NAME or build_flags = -D MACRO_NAME=macroValue.

Modifying compile options / macros with Sloeber IDE

If you are using Sloeber as your IDE, you can easily define global symbols with Properties > Arduino > CompileOptions.
Sloeber settings

BluePill cores

There are two cores for the PluePill.

Revision History

Version 1.3.1

  • Updated _1_Voltmeter example and renamed example names.
  • Improved SAMD support.

Version 1.3.0

  • Removed blocking wait for ATmega32U4 Serial in examples.
  • 10 bit Coefficients are working now, but they do not sound better 😞.
  • Tested on an ESP32.
  • Tested on a BluePill.

Version 1.2.0

  • Corrected wrong function name doNotUseUseInvertedOutput().
  • Added functions digitalWriteNonInvertedOutput() and digitalWriteInvertedOutput().

Version 1.1.0

  • SAMD support.
  • ESP32 support.
  • Teensy support.
  • Version number.
  • Renamed *.c to *.cpp files.
  • Added function sayQTimeout() in TalkieUtils.cpp.
  • Added example USDistanceToVoice.
  • Added function sayQVoltageVolts().
  • Improved end handling to minimize clicks.

Version 1.0.2

  • ATmega2560 supported and tested
  • Always set pins to input when finishing, to avoid a click.

Version 1.0.1

  • Added SPI compatibility by not resetting pin 11 to input if SPI is detected
  • Added new constructor Talkie(bool aUseNonInvertedOutputPin, bool aUseInvertedOutputPin);

Version 1.0.0

  • Initial Arduino library version

CI

Since Travis CI is unreliable and slow, the library examples are now tested with GitHub Actions for the following boards:

  • arduino:avr:uno
  • arduino:avr:leonardo
  • arduino:avr:mega
  • arduino:sam:arduino_due_x
  • esp8266:esp8266:huzzah:eesz=4M3M,xtal=80
  • esp32:esp32:featheresp32:FlashFreq=80
  • STM32:stm32:GenF1:pnum=BLUEPILL_F103C8

Requests for modifications / extensions

Please write me a PM including your motivation/problem if you need a modification or an extension.

If you find this library useful, please give it a star.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].