I have an issue …I am Particle publishing 3 x voltage data 3x Current data, 1 x Altimeter data and 1 x Accelerometer data and 1 x Temps but only One voltage /Current temp and altimeter is showing up on Particle cloud …Is there a reason for this ??
Are you violating the once per second (or burst of 4) rate limit for publishes?
2 Likes
You could combine all those events into one.
1 Like
Yes, this is the way to go.
Get it all out in a single publish event.
I send basically the full 255 bytes of data every 10 seconds and Losant.com receives it and updates my dashboard. Works perfectly.
2 Likes
Exactly how do I combine my publishes ?
There are multiple ways.
My preferred way is via snprintf()
2 Likes
See if this helps any, its what I had to learn to accomplish a custom publish event string.
2 Likes
Thanks for that …Ok so how do you separate the data between the colons after the publish ?
Thanks you have an example …Extreme newbie here
I show you how to do in the link I posed above.
2 Likes