
Re: Variable Number Change Issue
ckeyes888 wrote:Not sure I'm understanding you suggestion above about using a second variable.
The point is to have 2 variables:
Weather_Temperature_F, which contains the raw real (floating point) precise number.
Weather_Temperature_F_int, which contains the integer version.
It sounds like you want the integer version for whatever reason, so everywhere that you are currently referencing (control pages?) Weather_Temperature_F you would instead reference Weather_Temperature_F_int.
Then all you have to do is create a trigger for whenever Weather_Temperature_F changes have it stuff the integer version of the variable into Weather_Temperature_F_int.
ckeyes888 wrote:If Indigo can't recognize the difference between a 10.0 or a 10 what should I be
triggering from?
In that case it doesn't matter if it doesn't trigger. Weather_Temperature_F_int will still have the correct integer value in it for the last time it did trigger (when there was a real change).