rw_tts 1.0.2
rw_tts: ^1.0.2 copied to clipboard
TTS plugin for RealWear HMT-1, wraps RealWear TTS service. Allows to make any number of TTS requests differentiating them by request code.
rw_tts #
TTS plugin for RealWear HMT-1(Z1) for Flutter developers.
Usage #
import 'package:rw_tts/rw_tts.dart';
// Set requestCode to less than 1 if you don't need a callback
RwTts.speak('RealWear is awesome!', requestCode: 100).then((requestCode) {
print('TTS request $requestCode finished');
});
copied to clipboard