This repository has been archived by the owner on Nov 4, 2023. It is now read-only.
Replies: 1 comment
-
Please format your code properly as it is barely readable to other users. You can always use an anonymous function with https://github.com/resoai/TileBoard/wiki/Anonymous-functions |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi
I am using this for outside temperature:
{ position: [0, 0], type: TYPES.SENSOR, title: 'Outside', //subtitle: "Temperature", id: 'sensor.lumi_lumi_weather_temperature_buro', state: 'Humidity: &sensor.lumi_lumi_weather_humidity_buro.state%', filter: function (value) { // optional var num = parseFloat(value); return num && !isNaN(num) ? num.toFixed(1) : value; } },
My wisch is to change the color of the temperature text in red if the temperature is negative!
And if it's possible the text have to flash/blink!
is this possible?
thans you
Beta Was this translation helpful? Give feedback.
All reactions