Wall Mounted Dashboard (now known as HADashboard)

I have a few of these: https://www.amazon.com/Schlage-Connect-Camelot-Touchscreen-Deadbolt/dp/B00AGK9KOG/ref=sr_1_1?s=hi&ie=UTF8&qid=1468864873&sr=1-1&keywords=schlage+connect

The biggest complaint that I read was battery consumption and I have no problems on mine. The one that I’ve had the longest (over six months) is at 46% right now. Installation was a breeze, adding to my hub (Wink) was a breeze, works 100% of the time. I thought I had a problem locking one time, but when I went to check on it someone had left the door partially open so it was jamming on the door jamb. I liked that it was showing an error rather than accepting its fate! Between these locks and door sensors I have pretty good automation and knowledge of if my doors are closed and locked.

This looks cool but it looks like I’ll need to buy a wink hub to operate it. I already have an Insteon Hub and really trying to keep the number of “hubs” to a minimum :smiley:

Thats totally OK with me. I just throw out the request in case someone’s got the time and knowledge.

Cheers!
Jocke

1 Like

Anyone know how to change the tile/widget size? I see how to change the font (h1) and the icon (h2) in assets/stylesheets/application.scss, but not having any luck seeing what can make widgets a different size.

The problem I’m trying to fix is slimming down the footprint that it takes to get 5 rows worth of widgets on a screen. I’m using an old iPhone 5 for a bedside dashboard and the resolution and screen size I only see 4.5 rows forcing me to scroll slightly.

I’ve answered my own question… assets/javascripts/application.coffee

Dashing.widget_base_dimensions ||= [100, 100]

1 Like

Quick update - I am planning on putting out a new version including @jwl173305361’s Group widget over the weekend.

everything working fine. But

its not refreshing … hapush not refreshing

Any errors in the logfile? Is it correctly reading your dashboard?

hi
if i click refresh button then refreshing and showing correctly… but not auto refreshing
oh also the log not recording anything …take a look at my config
root@parani-VP:/srv/hass/src/hadashboard/hapush# ls -lrt
total 28
-rwxrwxrwx 1 root root 9534 Jul 21 22:17 hapush.py_ba
-rwxrwxrwx 1 root root 9522 Jul 21 22:19 hapush.py
-rwxrwxrwx 1 root root 192 Jul 23 23:52 hapush.cfg
-rwxrwxrwx 1 root root 0 Jul 23 23:52 hapush.log
root@parani-VP:/srv/hass/src/hadashboard/hapush# more hapush.cfg
ha_url = “http://192.168.0.10:8123
ha_key = api_key
dash_host = “192.168.0.10:3030”
dash_dir = “/srv/hass/src/hadashboard/dashboards”
logfile = “/srv/hass/src/hadashboard/hapush/hapush.log”

root@parani-VP:/srv/hass/s

Can you show me the output from hapush log file please.

I just pushed version 1.5 of the dashboard:

Version 1.5

  • Merge Hagroup contributed by jwl173305361
  • Add background color support for all widgets

Great update!
It would be great if you could change the text color in the same way as the bgcolor.

I have tested the bgcolor and it works great in haswitch, hameter, hadevicetracker hainputselect and news.

It does not work in hahumiditymeter and hascript tho.

Hascript color changes work fine for me - maybe a typo? I didn’t make the change to hahumiditymeter as I deprecated it in version 1.4 in favor of the more generic hameter.

The text color changes are doable I’ll maybe have a look at that for the next version.

Ok, I will check the hascript again and see i what i did wrong :slight_smile:
Then I change my humidity meter to hameter instead :wink:

Cool - the only issue with HAMeter is it doesn’t have the cool little graphic that hahumidity meter had - I’d like to find a way to make that configurable.

root@parani-VP:/srv/hass/src/hadashboard# sudo git pull origin
Updating c11e971…2c0ee4b
error: Your local changes to the following files would be overwritten by merge:
hapush/hapush.py
widgets/change_page/change_page.coffee
widgets/change_page/change_page.scss
widgets/clock/clock.coffee
widgets/clock/clock.scss
widgets/hadevicetracker/hadevicetracker.coffee
widgets/hadevicetracker/hadevicetracker.scss
widgets/hadimmer/hadimmer.coffee
widgets/hadimmer/hadimmer.scss
widgets/hagarage/hagarage.coffee
widgets/hagarage/hagarage.scss
widgets/hainputboolean/hainputboolean.coffee
widgets/hainputboolean/hainputboolean.scss
widgets/hainputselect/hainputselect.coffee
widgets/hainputselect/hainputselect.scss
widgets/halock/halock.coffee
widgets/halock/halock.scss
widgets/hamode/hamode.scss
widgets/hamotion/hamotion.coffee
widgets/hamotion/hamotion.scss
widgets/haswitch/haswitch.coffee
widgets/haswitch/haswitch.scss
widgets/reload/reload.coffee
widgets/reload/reload.scss
Please, commit your changes or stash them before you can merge.
Aborting

Great… i presume you mean the wateradrop. That one is is not needed for me, you already have the title Humidity :slight_smile:

@paranee2 this is because you have done local changes to your files.
This worked for me, but you need to change the ruby version in the gemfile and run “bundle install” again.

$ git fetch --all
$ git reset --hard origin/master
$ nano gemfile
$ bundle install
$ dashing start

I don’t know if this is the right way but i works :slight_smile:

Why the dependency on postgresql? I don’t see where it’s being used in this project.

I’m creating a Dockerfile to ease the installation.

That dependency was in the original version that I built upon - I assumed it was a requirement for Dashing. Try without and see if it works - it would certainly simplify installation if it wasn’t actually required.

Just pushed a minor update to fix a bug found by @jwl173305361:

Version 1.5.1

  • Fixed an issue with Float conversions on a weather field

Changes in behavior

Wind Chill on the weather widget has been replaced by Apparent Temperature which is now passed straight through from the sensor value.