Hi @ebz - just checked and the HVAC mode is in the entity,
‘hvac_modes: auto, heat, off’
So not sure why its not showing up - or is it because it’s ‘modes’ rather than ‘mode’ do you think?
Hi @ebz - just checked and the HVAC mode is in the entity,
‘hvac_modes: auto, heat, off’
So not sure why its not showing up - or is it because it’s ‘modes’ rather than ‘mode’ do you think?
Is is possible to make a pop up scrollable?
Hi there,
I’m having some issues setting up Tileboard on HA. My HA server is running on a different machine, and my IP is custom using DuckDNS - Can you talk me through the configuration settings when it’s the typical number IP’s. I can’t seem to get it working.
Cheers,
Tom
Hey! This is great, however, what url did you use to configure tileboard? Surely the “https://xxx.duckdns.org”, just leads you to HA ?
Have you added the /local/tileboard/index.html ?
I get a webpage that says the following:
The directory structure of TileBoard has changed.
Please refer to updated How To Use instructions.
Refer to project’s README.md for full instructions.
What location did you put the tileboard files?
Does it work with your local address?
You should follow the instructions that this page links to. The structure of the project has changed recently so you either have to build the project manually after checking out or download the zip and copy the contests to /local/tileboard/
Files are in: config - www - tileboard
When I try my local IP it says hass_ip ’s server IP address could not be found.
thanks to all involved for make this available and the numerous improvements!!
Just a question… is is possible to configure a popup to auto close or add logic to close the popup after pressing specific buttons on the popup?
Hi all,
I just started using HomeAssistant and Tileboard. Im trying to integrate the 17track.net integration to my tileboard.
I cant figure out, how I can list all the packages in a TYPES.TEXT_LIST tile.
Anyone have an example?
sensor.seventeentrack_packages_in_transit
attribution: Data provided by 17track.net
packages:
- friendly_name: Oxalis
info_text: Parcel handed to Pickup parcelshop by consignor.
status: In Transit
tracking_number: 543254325243
- friendly_name: Package2
info_text: Parcel handed to Pickup parcelshop by consignor.
status: In Transit
tracking_number: 87923498432289
unit_of_measurement: packages
friendly_name: Seventeentrack Packages In Transit
icon: 'mdi:package'
i have the same problem with the versioned tileboard. \old one works great.
i wonder, what its suppose to show index.html if there is no content in that file.
the instructions are the same as for the old version. so, why is not working?
i think instructions are unclear.
The file tells you that the structure of the project has changed and points to a more detailed explanation.
Basically, before all of TileBoard files were in the root of the repo while now the files that need to be deployed to the web server are in the “build” directory (after building them manually).
So either build the project manually (check instructions in CONTRIBUTING.md) or download the TileBoard.zip
file from the Releases page. The zip file has a file structure matching the old project so it might be easier to use (and you don’t have to build anything manually).
Its seems to complicated or i’m missing something.
The intructions say
Create a directory called tileboard inside www directory in HA's config path and copy all unpacked files there.
TileBoard will be available at http://HASS_IP:8123/local/tileboard/index.html
done that, but that index file send me back to instructios. I think the instructions are not updated for the versioned tileboard.
I use the Hass OS. I cant use the intructions from CONTRIBUTING.md with build commands. I have downloaded the zip structure and extracted to tileboard folder in www. What next?
Thanks for your time.
The instructions are correct for the TileBoard.zip
releases. That file doesn’t even include the index.html
that would give you the “The directory structure of TileBoard has changed.” message.
Maybe take a screenshot of your directory structure and we’ll try to find out what’s wrong with it.
got it. i have used the source_code.zip instead of tileboard.zip. Thanks man. god bless u
Hi @Van - i’m having a go at this now, but struggling getting to the data that in in the entries - if i console log it i get [object, object],[object,object] etc - i get this when i console log &sensor.bbc_news.attributes.entries - yet if i console log &sensor.bbc_news.attributes.entries[0] for example it just prints the [0] in the log - so struggling getting into the data.
any pointers? - is this a JSON object rather then an array do you reckon?
Thanks,
Jason
What are you using to get the rss feed as a sensor?
Hi @jasonwills. It’s been a while since I last look at this.
The console.log will display both array and json object. What you see there might be the function that gets the data from the “states” (states is where all the data is store).
This easiest way to list all your “inputs” is to console log the “states”. try console.log(this.states);
in one of the function.
From the default config.js on line 216. I just added the console.log().
state: function () {console.log(this.states); return 'Sunny'},
Hi @van,
thanks for taking the time, and yes, you’re right - getting there. now using a function that passes the entity, so now getting down to the individual pieces of info, and also have a counter that you suggested in Home Assistant, so nearly there
Thanks again for your help,
Jason