String with quotion mark in Full Duplex Serial
Moskog
Posts: 554
in Propeller 1
Got stuck.. no problem in Parallax Serial Terminal but how do I send a string like this in FDS:
AT+CGDCONT=1,"IP","NetProvider"
AT+CGDCONT=1,"IP","NetProvider"
Comments
34 is the ASCII decimal value for a double quote.
-Phil
fds.str(STRING("AT+CGDCONT=1,",34,"IP",34,",", 34,"NetProvider",34))
my guess, not tested.
Mike
Works perfect!
Thank you so much!
and @"Phil Pilgrim (PhiPi)" beat me by minutes...
Mike
No problem, thanks to both of you. It was just before I started to modify the FDS with a PUB Char.
And the solution was just seconds away thanks to this powerful forum.