Talkie library they are giving predefined words i want custom words ,how can i make that
i need for "battery" words and i make for custom words also
#include <Arduino.h>
#include "Talkie.h"
#include "Vocab_US_Large.h"
Talkie voice;
void setup() {
voice.say(sp2_VOLTS);
delay(1000);
voice.say(sp2_AMPS);
delay(1000);
}
void loop() {
}
in here VOLTS and AMPS are predefined words it working fine and so i need for custom here. I don't know how to make that. so please help me crack this and
Thank you