Page 1 of 184

Dashticz - General Discussions

Posted: Thursday 09 March 2017 14:25
by robgeerts
Please post some general discussions in this topic :)
(I moved the old start post to a separate pinned topic!

Re: Dashboard Design

Posted: Thursday 09 March 2017 14:29
by l00pz
Wow very nice looking Dashboard. Very interested in this :D

Re: Dashboard Design

Posted: Thursday 09 March 2017 14:34
by benj29
Yes! Waow!!!!

Envoyé de mon Moto G (4) en utilisant Tapatalk

Re: Dashboard Design

Posted: Thursday 09 March 2017 14:36
by fkok
Looks very good. Please share!!!

Re: Dashboard Design

Posted: Thursday 09 March 2017 14:48
by sic79
Great design, looks very professional

Re: Dashboard Design

Posted: Thursday 09 March 2017 15:15
by Spymate
Very nice desing. I want to try this.

Make Github account and make a new project for it.

Re: Dashboard Design

Posted: Thursday 09 March 2017 15:51
by EdwinK
Yes, please share.

Hope it would be as easy to adapt as G3rards frontpage

Re: Dashboard Design

Posted: Thursday 09 March 2017 15:52
by Sevift
Excellent!

Re: Dashboard Design

Posted: Thursday 09 March 2017 16:45
by gielie
Wow this looks realy nice.
Would you like to share the code? Id like to try this one.

Re: Dashboard Design

Posted: Thursday 09 March 2017 17:14
by pvm
Could this be the design frontend for domoboard?

Re: Dashboard Design

Posted: Thursday 09 March 2017 18:04
by robgeerts
You can find the source over here: https://gitlab.com/robgeerts/dashboard/tree/master
Change CONFIG.JS, for the weather to work, use your own api key from Wunderground.
After saving the config, it loads the switches wich are marked as favorite in Domoticz.
If you have changed the code yourself, it would be great if you can share the changes you made as a snippet in the repository.

I cannot promise it works immediately in your situation, because it was originally created for my own :)

Re: Dashboard Design

Posted: Thursday 09 March 2017 20:31
by l00pz
Thanks for sharing this Project but do I need to register at GitLab to see the repository?

Re: Dashboard Design

Posted: Thursday 09 March 2017 20:44
by robgeerts
Not any more ;)

I have just added 3 buttons for controlling your Ziggo Horizon mediabox (if you have one).
Take a look at CONFIG.JS for more info!

Edit: I also added support for NZBget :)

Re: Dashboard Design

Posted: Thursday 09 March 2017 21:46
by l00pz
Thanks! I Downloaded the Dashboard, and it's looking very nice. Made some changes to the icons as I also have some "Switches" in my Favorites. Could you maybe tell where the value of "Temperatuur Woonkamer" is based upon? And how I can change it?

Re: Dashboard Design

Posted: Thursday 09 March 2017 21:56
by robgeerts
The value of 'Temperature Woonkamer' is coming from a domoticz-switch with type 'Temp'.
In my case, my device (from my energy supplier, called Toon) is sending this value to Domoticz.

I just editted the scripts so it hides the blocks on the right at first, until there's a value available.
Could you post the changes you made (or a screenshot) to see if this is usefull for me? (or anyone else on this forum)

Re: New Dashboard Design

Posted: Thursday 09 March 2017 22:10
by l00pz
And what if you have multiple "Temp" Switches :D For no it looks like its using some random Temp Switch that I have, so if this Switch could be configured that would be cool. The Temperature Switches that you're using is also from Toon I presume? I tried adding my HoneyWell EvoTouch to it, but unfortunately it's not possible to control the Temperature with the Dashboard.

As for the Screenshot, this is my current Dashboard.

Image

Re: New Dashboard Design

Posted: Thursday 09 March 2017 22:26
by Skippiemanz
Wow!

This really looks great...

But how do you guys set it up with your own switches/temp sensors?

I cant seem to find any place to configure this...

Please help me out

Re: New Dashboard Design

Posted: Thursday 09 March 2017 22:30
by robgeerts
The following code in main.js (search for it as I have a newer version than you right now) fills the Woonkamer-block:

Code: Select all

if(data.result[r]['Type']=='Temp'){
If you know the IDX of the temperature-device, you could change this line to:

Code: Select all

if(data.result[r]['idx']==102){
(where 102 is the IDX-number)

Oh, I just added traffic info (dutch only)

Re: New Dashboard Design

Posted: Thursday 09 March 2017 22:31
by robgeerts
Skippiemanz wrote:Wow!

This really looks great...

But how do you guys set it up with your own switches/temp sensors?

I cant seem to find any place to configure this...

Please help me out

Initially, it gets the switches from Domoticz, the one you marked as Favorite (the yellow star).
IT only works if you add the right path to Domoticz in CONFIG.JS.

Re: New Dashboard Design

Posted: Thursday 09 March 2017 22:43
by Skippiemanz
robgeerts wrote:
Skippiemanz wrote:Wow!

This really looks great...

But how do you guys set it up with your own switches/temp sensors?

I cant seem to find any place to configure this...

Please help me out

Initially, it gets the switches from Domoticz, the one you marked as Favorite (the yellow star).
IT only works if you add the right path to Domoticz in CONFIG.JS.
Sorry, my mistake... forgot to change the default port number...

Working here now!