.header {}
has absolute position, so bottom: 0;
should do the trick.
tnx Alexey! nice work!
- but question about vertical align of date is open
and other question: - how integrate gismeteo weather sensors? darksky api is closed =( need weather in my tablet
- can other members provide example of custom.css for fullscreen camera stream?
if i use DOOR_ENTRY i have error of rest api when tap to screen for close
.header {position: absolute; bottom: 0;}
not work, need to remove top:0 how? top: none not work to
heh sorry im coding 20 years ago (table tr td etc…)
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",
}
},
]
}
},