Hi I have a watch face in development and I have 3 lights RED ORANGE GREEN I only want to display these lights based on [HR] = a specific range for example [HR] = 50-90 turn on green light [HR] = 120 - 220 turn of red light.
Any help would be appreciated, I have circled what i mean.
GREEN LIGHT TURN ON = OPACITY 0 + TAG
100*(([HR]>=50)*([HR]<=90))
If you want it dimmed down when not in range then this will work better
[HR]>=50?([HR]<=90?100:35):35 —> GREEN
[HR]>=90?([HR]<=115?100:35):35 —> YELLOW
etc.
Tomas
3 Likes
That’s very kind of you to reply so quickly thank you so much Tomas.
No problem
Have a great day !
Works perfect set the opacity to 0 and tagged each light with a different range its nice how it works when you drag the HR slider in WFS ![:slight_smile: :slight_smile:](https://emoji.discourse-cdn.com/google/slight_smile.png?v=10)
Thanks again!