Tileboard is awesome. How can I send you some money for all your efforts?
My camera video feeds all flash. Any idea how I can fix it (and ideally have a live video feed)? I tried changing and even removing the refresh - no difference.
Tilboard:
{
position: [2, 2],
id: 'camera.driveway_front',
title: '',
states: function(item, entity) {
var motion = this.parseFieldValue('&binary_sensor.driveway_front_camera_motion.state');
if (motion == 'on') {
return 'MOTION';
} else {
return ' ';
}
},
type: TYPES.CAMERA_THUMBNAIL,
bgSize: 'cover',
width: 2,
height: 1,
// state: false,
fullscreen: {
type: TYPES.CAMERA,
refresh: 250, // can be number in milliseconds
bgSize: 'cover'
},
},
Hello @resoai. First off all, congratulation for this wonderful job!!
Well, i have 6 media players and one of them are Home that group the other 5 players. When i choose to play the music on the Home (group) the others media players also plays the same thing. My question is: Is it possible to hide the other players if the Home (group) is playing?! Thanks.
I’ve place a Xiaomi thermometer in my Freezer and have display the temperature in TileBoard. I want to show the temperature in red, when the temperature is above -15C. How do I do that. This is my code.
{
position: [1, 2],
height: 1,
width: 1,
type: TYPES.SENSOR,
theme: ITEM_TRANSPARENT,
title: ‘Freezer’,
id: ‘sensor.temperature_158d0002c776ee’,
unit: ‘C’, // override default entity unit
state: false, // hidding state
filter: function (value)
{ // optional
var num = parseFloat(value);
return num && !isNaN(num) ? num.toFixed(1) : value;
}
you could use something like class: function () { return this.states['sensor.temperature_158d0002c776ee'].state > -15 ? 'red': ''; }
and define red somewhere in your custom.css.
(might need a parseFloat(this.states['sensor.temperature_158d0002c776ee'].state))
More responsive scrolling on apple devices (ex. iphone)?
When I added the following, scrolling was great but popup menus (like fan speed) are unusable:
it is possible to change state but only when you know code\pin ? not just like simple switch light, change state after write code or locked by code switch?
I had the same issue, I ended up creating a webpage on my own server, formatted the page the way I wanted it and then added that into tialboard via an iframe tile.
Great project! I have been using it for my home automation and works like a charm. For another project (without home assistant) I would really like to use Tileboard as well (to create a few pages with iframes in them). Is there any way to use Tileboard without a homeassistant install? Can I comment out some code to skip the home assistant connection?
That worked, however I found a good rain radar that can be embedded easily like windy.com
We’re on tank water here so being able to see rain forecasts helps
I would like to display a different background image on a sensor tile depending on the state of the sensor. It seems to work using the following code when using the nul theme, but when using the transparent theme, no background image shows up. I have now temporarily used “content” instead of “background-image” image for that tile, so the image at least shows up, but that does not auto-update on state-change and (clearly) makes the other advantages of the sensor tiletype disappear (displaying state text etc.).
Can you help me to get background-image to work?
Did some hacking on my local copy of TileBoard today and added support for a footer (works the same as the header) and use it to display weather alerts. Also added weather alert badges to my screensaver.