Can the Talkie library work on the beetle?
I thought it'd be similar enough to the Leonardo so have successfully loaded the
Getting Started demo to the Beetle and hooked a headphone up to pin 3, the SCL pin.
The code is running but i don't hear anything from the SCL pin.
It's not an issue with my wiring as if i set pin 3 HIGH the LOW i hear clicks.
Anyone got any ideas or is talkie on the beetle just a non starter?
'My code" is the getting started example code included with the library:
// Talkie library
// Copyright 2011 Peter Knight
// This code is released under GPLv2 license.
//
// Welcome to the Talkie library examples.
//
// Talkie is a speech synthesiser that works from a fixed vocabulary.
//
// There are hundreds of words in the 'Vocabulary' examples.
//
// Sound is output on digital pin 3. It can drive headphones directly, or add a simple audio amplifier to drive a loudspeaker.
//
#include "Talkie.h"
#include "Vocab_US_Large.h"
Talkie voice;
void setup() {
voice.say(sp2_DANGER);
voice.say(sp2_DANGER);
voice.say(sp2_RED);
voice.say(sp2_ALERT);
voice.say(sp2_MOTOR);
voice.say(sp2_IS);
voice.say(sp2_ON);
voice.say(sp2_FIRE);
}
void loop() {
}
Currently supporting:
ATmega328 as found on the Uno and Nano bords.
ATmega32U4 as found on the Leonardo and CircuitPlaygound boards.
ARM0 (but not tested) as found on the SAMD, Teensy and Particle boards.