top: auto !important;
may be better
.header {bottom: 0; top: auto;}
Sorry, this is off topic but I do have a long-life token for the App “Dashboard” on this iPad. How do I use this token for the “normal” access via the iPad Web-Browser?
What do you mean by “normal access”? If it is HA’s UI, than I’m afraid there is no way.
Guys! PLEASE HELP!
I do not have darksky api key! but i want to see the weather
all my attempts to change the names of the sensors with other providers ended in failure
HELP
answer to my self
just need add .state to end of sensor name!
heh no main.js now! look like code is compiled in last version of tileboard
need help
is there a way i can get access to the current version number (for display) … ?
have been playing around with this for some time now came across this little issue for some of the tiles cant figure out how to get rid of it.
The undefined tag shown after forecast or after current temp.
here is the code.
{
position: [2,0],
width: 2,
id: 'climate.hallway',
type: TYPES.CLIMATE,
unit: 'F',
useHvacMode: true, // Optional: enables HVAC mode (by default uses PRESET mode)
state: function (item, entity) {
return 'Current '
+ entity.attributes.current_temperature
+ entity.attributes.unit_of_measurement;
}
},
its happening for weather as well cant seem to figure out why. if anyone can point me in the right direction would be apreciated.
It looks like entity.attributes.unit_of_measurement
doesn’t exist on the “climate” entity.
As for the weather tile, set state
to false
.
You mean the TileBoard version number? No, it’s not exposed anywhere currently.
What is your issue? There was some fix for HVAC in the latest release so maybe you don’t need to modify the code? And if you do, you need to check-out the code from github and compile it yourself. There are instructions in the readme.
got it with the popup option if it seems adding a light in there will not allow me to toggle the light on or off is this a bug or am i doing something wrong?
none can be clicked.
{
position: [0,0],
type: TYPES.POPUP,
id: {},
icon: 'mdi-lightbulb-group-outline',
title: 'Kitchen/Dinning',
state: false,
popup: {
tileSize: 100,
items: [
{
position: [0, 0],
type: TYPES.SWITCH,
id: 'switch.kitchen_island',
title: 'Backyard',
subtitle: 'Motion',
states: {
on: "On",
off: "Off"
},
icons: {
on: "mdi-lightbulb-on",
off: "mdi-lightbulb",
}
},
{
position: [1, 0],
type: TYPES.SWITCH,
id: 'switch.kitchen_island',
title: 'Backyard',
subtitle: 'Motion',
states: {
on: "On",
off: "Off"
},
icons: {
on: "mdi-lightbulb-on",
off: "mdi-lightbulb",
}
},
{
position: [0, 1],
type: TYPES.LIGHT,
id: 'light.living_room',
title: 'Entertainment',
subtitle: 'Living Room',
states: {
on: "On",
off: "Off"
},
icons: {
on: "mdi-WallSconceRound",
off: "mdi-lightbulb",
}
},
]
}
},
Is there something unclear about the message you’ve gotten there?
It explicitly tells you what is wrong.
Yes so i have the config.js in /local/tileboard/config.js and i copied that non-sense config.example.js in dist/config.jswhich i supposeis local/tileboard/dist/config.js
But the screen brings that non sense message
Oh, sorry. That message in the dialog is wrong and will be fixed. You have to just rename config.example.js
to config.js
. Not copy it to the “dist” folder.