Microbit/speech.py

changeset 0
b3daa2ebea2f
child 11
c8198736bff3
equal deleted inserted replaced
-1:000000000000 0:b3daa2ebea2f
1 # -*- coding: utf-8 -*-
2
3 # Copyright (c) 2019 Detlev Offenbach <detlev@die-offenbachs.de>
4 #
5
6 """
7 Module containing stubs for API generation of the 'speech' module.
8 """
9
10 def translate(words):
11 pass
12
13 def pronounce(phonemes, *, pitch=64, speed=72, mouth=128, throat=128):
14 pass
15
16 def say(words, *, pitch=64, speed=72, mouth=128, throat=128):
17 pass
18
19 def sing(phonemes, *, pitch=64, speed=72, mouth=128, throat=128):
20 pass

eric ide

mercurial