Description
Hello,
I will be using an Arduino MKR GSM 1400 on an installation that is in french.
I have come across a bug in the library where accents are not sent unless I use emojis:
using the receive SMS example https://www.arduino.cc/en/Tutorial/MKRGSMExamplesReceiveSMS
If I send the following message:
"Teste avec accès aux accents"
The Serial Monitor returns:
"Teste avec accs aux accents"
But if I send:
"Teste avec accès aux accents 😜"
The serial Monitor returns the following hex values:
"0054006500730074006500200061007600650063002000610063006300E80073002000610075007800200061006300630065006E007400730020D83DDE1C"
Which I can decode to:
"Teste avec accès aux accents 😜"
Is there a way to force hex values to be returned instead of text?
It's seems that it's the only way to get accents to show up...
Regards
Marc