Simultaneous use of state and atomicState

@Jim would like to point out that the platform is having issues when saving a float variable in state

state.last_check = now() as float

This causing severe issues, it’s caching the value of state even after 10 seconds, ie the code when executed over 10 seconds 10 times reports the same value all 10 times. However

state.last_check = now()

works fine every time.

Not sure if it’s related to this