Hi,
I am using Particle Photon and my setup has these lines:
void setup()
{
Particle.variable("Hour", time_hour);
Particle.variable("Minute", time_min);
Particle.variable("Second", time_sec);
Particle.variable("Intensity", backupVariables.intensity);
Particle.variable("Time Format", backupVariables.timeFormat);
Particle.variable("Time Mismatch", temp_number);
Particle.function("Watch Mode", watchMode);
Particle.function("Display Intensity", displayCtrl);
<Couple of other lines which are doing things as expected>
}
The problem I see is that when I check the values of variables in the console.particle.io or in the Android app it always comes as ‘0’. Whereas the same variables are visible correctly in the display. However, the exposed particle functions are working as expected.
It used to work before and suddenly stopped working. Is there and limitation of how many variable or how many time I can update these variables?
Thanks,
Rahul