TileBoard - New dashboard for Homeassistant

No. There are three options:

  1. Store password in plain text (never do that)
  2. Prompt password every time page loads
  3. Prompt password when page loads the first time and save it (localstorage)

Okay cool I’m getting there now :blush:

In option 3 you mean local storage on the tablet right?

So do you have 2 port forwarding rules set up?

  1. external 443 to internal 443
  2. external 80 to internal 443

Yes, within the browser.

Hi there,

This has been an amazing project thus far. It’s made me begin my jump from Smartthings. In your header, you have a weather widget on the far right. How do you get that there? My header is working, and this is the sniper below. But the weather doesn’t show up? I’m also only 1 week old in Home Assistant :wink: so be nice!

   header: { // https://github.com/resoai/TileBoard/wiki/Header-configuration
  styles: {
     padding: '30px 130px 0',
     fontSize: '22px'
  },

left: [
{
type: HEADER_ITEMS.DATETIME,
dateFormat: ‘EEEE, LLLL dd’, //https://docs.angularjs.org/api/ng/filter/date
styles: {
margin: ‘0’
}
}
],
right: [ // Uncomment weather object to get weather in your header.
{
type: HEADER_ITEMS.WEATHER,
styles: {
margin: ‘2 0 0’
},
icon: ‘&sensor.dark_sky_icon.state’,
icons: {
‘clear-day’: ‘clear’,
‘clear-night’: ‘nt-clear’,
‘cloudy’: ‘cloudy’,
‘rain’: ‘rain’,
‘sleet’: ‘sleet’,
‘snow’: ‘snow’,
‘wind’: ‘hazy’,
‘fog’: ‘fog’,
‘partly-cloudy-day’: ‘partlycloudy’,
‘partly-cloudy-night’: ‘nt-partlycloudy’
},
fields: {
summary: ‘&sensor.dark_sky_summary.state’,
temperature: ‘&sensor.dark_sky_temperature.state’,
temperatureUnit: ‘&sensor.dark_sky_temperature.attributes.unit_of_measurement’,
}
}
]
},

@freekeys, that’s correct! Once done, everything should work fine for you.

Thanks! :smiley:

:slight_smile: is it possible to have 2 tiles with the same position? And then use “hidden” logic to only display one at any given time?

I’m thinking to have two device tracker tiles per person, a map version for when they’re away, and a picture version for when they’re home/at work (and I don’t need to see the map therefore)

hi @adamlaakso1, can you re-paste your config with preformatted text and blockquote on so the quote marks don’t all change and I’ll paste it into my config to see if i can spot the issue. I’m doing the same thing and it works fine.

1 Like

Will do after. I have it in my config and no errors just not sure why nothing comes up. Thanks for your help!

Don’t access to it at the moment. Are you saying its not showing correctly in your front end or TileBoard?

You kinda can but I don’t think this is such a good idea.

I have now and it works thanks. New to this

Camera Tile

I have setup camera tiles to connect directly to the camera streams rather than routing through HA. Another user as done it previously on the this thread.

Couple of queries. i have configured one to use a limited MJPEG stream, however the tile goes blank after a period of time, say between 10-30 seconds, sometimes it comes back on but then flashes on and off. Theres no issues with connectivity etc. As anbody experienced similar issues?

Im using it as a reversing camera on my HA campervan setup. My other cameras only support RTSP h264 streams, is it possible to use H264?

Thanks again folks

It would be obviously helpful to see the code :slight_smile:

oops, always forget the obvious

     title: 'Reversing Camera',
     bg: 'images/bg1.jpg',
     icon: 'mdi-cctv', // home icon
     groups: [
        {
           title: '',
           width: 2,
           height: 3,
           items: [
		   {
				 position: [0, 0],
				 id: {},
				 type: TYPES.CAMERA,
				 bgSize: 'cover',
				 width: 6,
				 height: 4.5,
				 state: false,
				 fullscreen: {},
				 refresh: 500, // can be number in milliseconds
				 filter: function (item, entity) {
                      return "http://root:[email protected]/axis-cgi/mjpg/video.cgi";
				 }

i’ve tried different refresh rates, i know its quite low at the minute but is the same
thanks

MJPEG stream does not close the connection, you don’t need to set refresh, basically when you set it, it closes the correction and establishes it again.

ta, do i just delete the line of code and try again. presuming so :smile:

Yes :slight_smile:

1 Like
header: { // https://github.com/resoai/TileBoard/wiki/Header-configuration
      styles: {
         padding: '30px 130px 0',
         fontSize: '22px'
      },
left: [
      {
         type: HEADER_ITEMS.DATETIME,
         dateFormat: 'EEEE, LLLL dd', //https://docs.angularjs.org/api/ng/filter/date
         styles: {
            margin: '0'
         }
      }
   ],
   right: [    // Uncomment weather object to get weather in your header.
      {
         type: HEADER_ITEMS.WEATHER,
         styles: {
            margin: '2 0 0'
         },
         icon: '&sensor.dark_sky_icon.state',
         icons: {
            'clear-day': 'clear',
            'clear-night': 'nt-clear',
            'cloudy': 'cloudy',
            'rain': 'rain',
            'sleet': 'sleet',
            'snow': 'snow',
            'wind': 'hazy',
            'fog': 'fog',
            'partly-cloudy-day': 'partlycloudy',
            'partly-cloudy-night': 'nt-partlycloudy'
         },
         fields: {
            summary: '&sensor.dark_sky_summary.state',
            temperature: '&sensor.dark_sky_temperature.state',
            temperatureUnit: '&sensor.dark_sky_temperature.attributes.unit_of_measurement',
         }
      }
   ]
   },
1 Like