I am suffering a severe brain cramp. Usually when I encounter a problem with my code, I can eventually fix it once I engage a few in-reserve brain cells. This one is driving me nuts though:
I have been successfully publishing events to a Google sheet via a webhook for months. The events have been integers converted to strings like this:
Particle.publish ("Height",String(height));
I recently decided that it’d be useful to append a plus sign to the event data, so I modified the code as follows:
Particle.publish ("Height",String(height)+"+");
Now nothing shows up in the sheet for that event name.
The attached screenshot of a section of the sheet shows that the Height field was empty until I removed the “+” sign around 6 AM.
I’m sure there is a simle explanation but it escapes me. Anyone able to offer advice?