-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sending diacritic signs to the espeak #28
Comments
Unfortunately, Arduino only handles 7bit ASCII. |
I'm sorry but I don't understand ... Arduino Serial handles also special chars like in this simple code
so when running putty on arduino serial it is showing exactly what the code is sending. So the problem in my opinion is on the movi side |
Yes but they don't reach our board....
Gerald
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
<http://www.gerald-friedland.org>
-- <http://www.gerald-friedland.org>
Dr. Gerald Friedland <http://www.gerald-friedland.org>
Founder and CTO, Audeme LLC <http://www.gerald-friedland.org>
http://www.audeme.com <http://www.gerald-friedland.org>
…On Thu, Aug 20, 2020 at 1:37 PM pawkon ***@***.***> wrote:
I'm sorry but I don't understand ... Arduino Serial handles also special
chars like in this simple code
void setup() {
Serial.begin(115200);
}
void loop() {
Serial.println("Cześć");
Serial.println("\u0627\u0644\u0639\u0631\u0628\u064A\u0629");
delay(3000);
}
so when running putty on arduino serial it is showing exactly what the
code is sending. So the problem in my opinion is on the movi side
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#28 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AACRVETFUWSCVNLL5SGYVJDSBWCQ3ANCNFSM4QFJZHZQ>
.
|
Is there any workaround ? |
Because there is no answer on movi forum then I'm writing here as a bug? Movi is able to use espeak in different languages but is there any way of sending diacritic signs to the espeak to pronounce them right? For example in german like : ß or in Russian: ц or in Polish ź etc? Now sending them from arduino code they are pronounced like \u283 etc.
The text was updated successfully, but these errors were encountered: