Question
How can I connect alert to mashup
I have created a thing to detect the temperature. While displaying the temperature in mashup, I want to display an alert message everytime the temperature is in a certain range . I also want to deploy a colour according to the range of temperature.
For e.g
- if (temperature > 0 && temperature < 60)
print ("the temperature is not that high")
And the colour should be "green"
- if (temperature > 60 && temperature < 80)
print ("the temperature high")
And the colour should be "red"
How can I implement something like this!!
Thank you in advance.

