Anyone have experience working with Console ascii table?
It's so strange- my little runCurl(); loop is working well, but as soon as I add the console to it to try to see the output from the MCU, I can't get any activity to show up in the monitor.
I can see that it's communicating with my Arduino because firstly, I see that the read/transmit lights are lit up and secondly, the base program doesn't start up until I open the Console (aka Serial Monitor), and then it works correctly, but nothing pops up in the console monitor.
Here is the current language for my loop:
void runCurl() {
Process p;
p.begin("curl");
p.addParameter("-d");
p.addParameter("devid=vBECBF1F4A7D765");
p.addParameter("http://api.pushingbox.com/pushingbox/");
p.run();
while (p.available()>0)
{
char c = p.read();
Console.print(c);
}
}
And yes, I've properly included the console, and started the bridge and console ahead of my while statement- all just like I do in either the Cosole Read example sketch or the Console ASCII Table print, both of which work and show up in the console correctly, but this process doesn't show anything. Is it possible that there's nothing showing up that it can print out?