Hello.
I try to communicate with Xively and to do so I have to send stings in JSON format through the serial hardware port USART (connected to a WiFly RN171).
String:
{"method":"get","version":"1.0.0","resource" : "/feeds/73205","headers" :{"X-ApiKey":"myPassword"}}
As I cannot put the " character into a string I suppose the only way is to write:
{$method$:$get$, $version$:$ .... // replacing the " with a $ and then while printing mapping the $ to ".
I suppose I would have to edit the print Class or is there an other, easier way to do this?
Thanks Martin