Thanks for the reply. I tried all different kind of name that could be apply to the alarm but unfortunately, I can’t find nothing else than those 2.
Can someone give me a link to a list of the available commands that can be called from Home Assistant automations? Or better yet an example of how to bring up a camera stream in TileBoard based on a trigger of some sort like motion or a button push?
I’m trying to bring up the camera stream from my doorbell camera (already in home assistant as a camera entity) when a button is pushed. I’ve tried searching through this thread but can’t seem to find what I’m looking for.
День добрый, уважаемое сообщество!
Подскажите пожалуйста, существует ли возможность вывести Яндекс Карту с построенным маршрутом на плитку?
Маршрут всегда будет одинаковым, хочется видеть загруженность дорог и понимать сколько времени займет маршрут и каким путем лучше ехать.
Возможно Яндекс Карты не лучший вариант, тогда может сообщество подскажет что лучше использовать для Москвы и как это можно реализовать в TileBoard?
Спасибо!
Good day, dear community!
Can you please tell me if it is possible to display Yandex Map with the constructed route on a tile?
The route will always be the same, I want to see the traffic congestion and understand how long the route will take and which way is better to go.
Perhaps Yandex Maps is not the best option, then maybe the community will tell you what is better to use for Moscow and how it can be implemented in TileBoard?
Thank!
Увы, не знаком с Яндекс Картами, но подозреваю, что можно без проблем вывести через IFRAME
или POPUP_IFRAME
, если нужно видеть карту при нажатии на плитку.
Проблема в том что Яндекс не даёт своим сервисам отображаться во фреймах.
Наверняка у Яндекс Карт есть API, которое позволяет встраивать его в страницы, как Гуглокарты.
Внимание.
Использование кода iframe имеет ограничения:
для карт доступен только вид Схема,
карта может отображаться только на крупных масштабах,
не все теги HTML будут работать
Выбор типа карты и получениекода или ссылки - Конструктор карт | Конструктор карт Яндекса
И как не странно у них нет в API возможности строить маршрут. (
Вроде как этого достаточно, можно как картинку через IMAGE
плитку.
Хорошо, с Яндексом понятно что все через жору.
Через Гугл подобное решение можно реализовать?
Важно что бы картинка обновлялась, иначе прогноз маршрута будет не актуален.
За это отвечает атрибут refresh
плитки, можно задать обновление в секундах.
Я видимо недопонял, подскажите где можно почитать по подробнее про IMAGE плитку?
Тоже самое, что и IFRAME
, только встраивает картинку через стандартные IMG
тэг.
Картинку нужно подставлять через стили?
Не понял вопроса. Давайте не будем засорять трэд короткими вопросами - ответами, это не чат.
Благодарю Вас!
Буду дальше разбираться.
Maybe I’ve lost my mind here. I’m starting on a fresh config from the template and anytime the background is changed from bg1, even to bg2 or 3, it goes to a flat color. I can’t get any other background to show up regardless of browser/cache.
Just a follow-up. Thanks to your post, I just added new values in the CSS based on the new states of HA and it just worked.
Here’s the code if it could help others. I’m also including some code for the alarm tile to blink when it’s arming.
.item.-th-alarm.-armed_away
{background-color:rgba(200, 0, 0, 1);
border:1px solid hsla(0,0%,0%,1)
}
.item.-th-alarm.-armed_home
{background-color:rgba(200, 0, 0, 1);
border:1px solid hsla(0,0%,0%,1)
}
.item.-th-alarm.-arming
{animation: alarm_blinking 1s infinite ease-in-out;
border:1px solid hsla(0,0%,0%,1);
}
@-webkit-keyframes alarm_blinking {
0% {
background-color:rgba(200, 200, 0, 0);
}
100% {
background-color:rgba(200, 200, 0, 1);
}
}
Even though I don’t use the alarm tile, I think it would make sense to have something like that built-in. Although the proper fix would have to consider all themes so might need to be more sophisticated. Feel free to create PR if you feel like tackling this.