Page 14 of 20

Re: Dashticz - Feature Requests

Posted: Tuesday 13 February 2018 22:12
by Derik
naitsirhc wrote: Tuesday 13 February 2018 18:50 this worked for me :D
https://api.buienradar.nl/image/1.0/Rad ... =0&forc=48
Please how do you do this?

Re: Dashticz - Feature Requests

Posted: Tuesday 13 February 2018 22:38
by naitsirhc
ehm googled a bit and hit (by accident) the right search criteria.
Put it in Dashticz custom.js. Adapted the number behind hist and presto there you go

Re: Dashticz - Feature Requests

Posted: Tuesday 13 February 2018 22:42
by Derik
naitsirhc wrote: Tuesday 13 February 2018 22:38 ehm googled a bit and hit (by accident) the right search criteria.
Put it in Dashticz custom.js. Adapted the unit behind hist and presto
Where do you place it??
Pleace a screendump..xxx

Re: Dashticz - Feature Requests

Posted: Tuesday 13 February 2018 22:47
by naitsirhc
you mean:
buienr.PNG
buienr.PNG (13.26 KiB) Viewed 6468 times
in config.js?

Re: Dashticz - Feature Requests

Posted: Thursday 15 February 2018 19:51
by Derik
mm yepp
please share the link in the code option i still get errors..

Re: Dashticz - Feature Requests

Posted: Monday 19 February 2018 12:21
by naitsirhc
@Derik
Send PM

Re: Dashticz - Feature Requests

Posted: Friday 23 February 2018 21:15
by norrland
Looks like support for the type "Door Lock" is missing.
States are Locked and Unlocked.

Now it is handled the same way as "Door Contact" which is a completely different thing (a sensor rather than a lock).

This is how the device info looks like.

Code: Select all

{
   "ActTime" : 1519415468,
   "AstrTwilightEnd" : "19:26",
   "AstrTwilightStart" : "04:43",
   "CivTwilightEnd" : "17:41",
   "CivTwilightStart" : "06:27",
   "DayLength" : "09:42",
   "NautTwilightEnd" : "18:33",
   "NautTwilightStart" : "05:35",
   "ServerTime" : "2018-02-23 20:51:08",
   "SunAtSouth" : "12:05",
   "Sunrise" : "07:13",
   "Sunset" : "16:55",
   "result" : [
      {
         "AddjMulti" : 1.0,
         "AddjMulti2" : 1.0,
         "AddjValue" : 0.0,
         "AddjValue2" : 0.0,
         "BatteryLevel" : 255,
         "CustomImage" : 0,
         "Data" : "Locked",
         "Description" : "",
         "Favorite" : 1,
         "HardwareID" : 1,
         "HardwareName" : "ZStick",
         "HardwareType" : "OpenZWave USB",
         "HardwareTypeVal" : 21,
         "HaveDimmer" : true,
         "HaveGroupCmd" : true,
         "HaveTimeout" : false,
         "ID" : "00002801",
         "Image" : "Light",
         "InternalState" : "Locked",
         "IsSubDevice" : false,
         "LastUpdate" : "2018-02-23 20:49:57",
         "Level" : 0,
         "LevelInt" : 0,
         "MaxDimLevel" : 100,
         "Name" : "Garagedörren",
         "Notifications" : "true",
         "PlanID" : "0",
         "PlanIDs" : [ 0 ],
         "Protected" : false,
         "ShowNotifications" : true,
         "SignalLevel" : "-",
         "Status" : "Locked",
         "StrParam1" : "",
         "StrParam2" : "",
         "SubType" : "Switch",
         "SwitchType" : "Door Lock",
         "SwitchTypeVal" : 19,
         "Timers" : "false",
         "Type" : "Light/Switch",
         "TypeImg" : "door",
         "Unit" : 1,
         "Used" : 1,
         "UsedByCamera" : false,
         "XOffset" : "0",
         "YOffset" : "0",
         "idx" : "260"
      }
   ],
   "status" : "OK",
   "title" : "Devices"
}

Re: Dashticz - Feature Requests

Posted: Monday 05 March 2018 14:20
by nosehook
Hoi Rob,

First of all, I love Dashticz so far!
What I was wondering:
1) Is it possible to use google to calculate the (car based) commute time at present to work? I generally use Dashticz in the morning when I wake up and this would make me quite happy, since I work at irregular times.
2) traffic jams/accidents that have happened on the route to work.
3) check flight status (on time/delay) of a specific flight (pulled from google callendar)

Keep up the amazing work!
Regards,

Freek

Re: Dashticz - Feature Requests

Posted: Monday 05 March 2018 23:00
by Ingmar
nosehook wrote: Monday 05 March 2018 14:20 Hoi Rob,

First of all, I love Dashticz so far!
What I was wondering:
1) Is it possible to use google to calculate the (car based) commute time at present to work? I generally use Dashticz in the morning when I wake up and this would make me quite happy, since I work at irregular times.
2) traffic jams/accidents that have happened on the route to work.
3) check flight status (on time/delay) of a specific flight (pulled from google callendar)

Keep up the amazing work!
Regards,

Freek
Hi Freek,

Maybe not exactly what you are looking for, but I am using the following code: It creates a button on your dashboard and when you click it it will show a popup with your route to work (or whatever you set it on) including the time required with traffic and alternative routes. Just like as if you planned your route with Google maps.

Code: Select all

buttons.Route = {width:10, title: 'Route to work', url: 'https://www.google.com/maps/embed/v1/directions?key=INSERT_YOUR_GOOGLE_API&origin=STREETNAME+123,+1234+AB+CITYNAME,+COUNTRY&destination=STREETNAME+123,+1234+AB+CITYNAME'}
So for example:

Code: Select all

buttons.Route = {width:10, title: 'Route to work', url: 'https://www.google.com/maps/embed/v1/directions?key=AIzaRyDPHISSPkc5g6Elcm4pWRTcGdDcfeGJtM&origin=Damrak+1,+1012+LG+Amsterdam&destination=Noordeinde+1,+2514+GA+Den+Haag'}
Obviously the API in the piece of code above is not my API, i changed bits to make sure it doesn't work ;)

Re: Dashticz - Feature Requests

Posted: Monday 05 March 2018 23:30
by Derik
Ingmar wrote: Monday 05 March 2018 23:00
nosehook wrote: Monday 05 March 2018 14:20 Hoi Rob,

First of all, I love Dashticz so far!
What I was wondering:
1) Is it possible to use google to calculate the (car based) commute time at present to work? I generally use Dashticz in the morning when I wake up and this would make me quite happy, since I work at irregular times.
2) traffic jams/accidents that have happened on the route to work.
3) check flight status (on time/delay) of a specific flight (pulled from google callendar)

Keep up the amazing work!
Regards,

Freek
Hi Freek,

Maybe not exactly what you are looking for, but I am using the following code: It creates a button on your dashboard and when you click it it will show a popup with your route to work (or whatever you set it on) including the time required with traffic and alternative routes. Just like as if you planned your route with Google maps.

Code: Select all

buttons.Route = {width:10, title: 'Route to work', url: 'https://www.google.com/maps/embed/v1/directions?key=INSERT_YOUR_GOOGLE_API&origin=STREETNAME+123,+1234+AB+CITYNAME,+COUNTRY&destination=STREETNAME+123,+1234+AB+CITYNAME'}
So for example:

Code: Select all

buttons.Route = {width:10, title: 'Route to work', url: 'https://www.google.com/maps/embed/v1/directions?key=AIzaRyDPHISSPkc5g6Elcm4pWRTcGdDcfeGJtM&origin=Damrak+1,+1012+LG+Amsterdam&destination=Noordeinde+1,+2514+GA+Den+Haag'}
Obviously the API in the piece of code above is not my API, i changed bits to make sure it doesn't work ;)
mm very great feature....
Cannot script self...unfort.......

Only perhaps is it possible place it in to a smal window like te buienradar option?
And when you tick on the smal window there come a pop up in a new lager window..
That pop up stops after x second ?
Looks great to me.
when this could be possible.

Re: Dashticz - Feature Requests

Posted: Monday 05 March 2018 23:36
by Ingmar
I can't script either, it's a matter of searching, reading, trying, etc. Maybe you should put some time into researching things yourself instead of only asking other people to stuff for you ;-)

Re: Dashticz - Feature Requests

Posted: Monday 05 March 2018 23:41
by Derik
Ingmar wrote: Monday 05 March 2018 23:36 I can't script either, it's a matter of searching, reading, trying, etc. Maybe you should put some time into researching things yourself instead of only asking other people to stuff for you ;-)
Thanks love U2

Only this name of this topic is.....

Re: Dashticz - Feature Requests

Posted: Tuesday 06 March 2018 18:21
by nosehook
Ingmar wrote: Monday 05 March 2018 23:00
nosehook wrote: Monday 05 March 2018 14:20 Hoi Rob,

First of all, I love Dashticz so far!
What I was wondering:
1) Is it possible to use google to calculate the (car based) commute time at present to work? I generally use Dashticz in the morning when I wake up and this would make me quite happy, since I work at irregular times.
2) traffic jams/accidents that have happened on the route to work.
3) check flight status (on time/delay) of a specific flight (pulled from google callendar)

Keep up the amazing work!
Regards,

Freek
Hi Freek,

Maybe not exactly what you are looking for, but I am using the following code: It creates a button on your dashboard and when you click it it will show a popup with your route to work (or whatever you set it on) including the time required with traffic and alternative routes. Just like as if you planned your route with Google maps.

Code: Select all

buttons.Route = {width:10, title: 'Route to work', url: 'https://www.google.com/maps/embed/v1/directions?key=INSERT_YOUR_GOOGLE_API&origin=STREETNAME+123,+1234+AB+CITYNAME,+COUNTRY&destination=STREETNAME+123,+1234+AB+CITYNAME'}
So for example:

Code: Select all

buttons.Route = {width:10, title: 'Route to work', url: 'https://www.google.com/maps/embed/v1/directions?key=AIzaRyDPHISSPkc5g6Elcm4pWRTcGdDcfeGJtM&origin=Damrak+1,+1012+LG+Amsterdam&destination=Noordeinde+1,+2514+GA+Den+Haag'}
Obviously the API in the piece of code above is not my API, i changed bits to make sure it doesn't work ;)
Got it working! Many thanks.

Re: Dashticz - Feature Requests

Posted: Tuesday 06 March 2018 22:41
by clubeddie
nosehook wrote: Monday 05 March 2018 14:20 Hoi Rob,

First of all, I love Dashticz so far!
What I was wondering:
1) Is it possible to use google to calculate the (car based) commute time at present to work? I generally use Dashticz in the morning when I wake up and this would make me quite happy, since I work at irregular times.
2) traffic jams/accidents that have happened on the route to work.
3) check flight status (on time/delay) of a specific flight (pulled from google callendar)

Keep up the amazing work!
Regards,

Freek
You can take a look at this thread.
http://www.domoticz.com/forum/viewtopic ... it=Traffic

I use this in combination of a google Maps of my area (which can be easily inserted in dashticz).
So i can see in two blocks my travel time, delay in percentage and an overview of the area.

I also combined ut with my xiaomi gateway, so i can see on the light (green, orange, red) how many delay there is and if i have to eat my breakfast fast :lol:

Re: Dashticz - Feature Requests

Posted: Wednesday 07 March 2018 20:27
by tlkg
A way to disable screen swiping/sliding for use with tablets.
For example, when you have sliders on the first or other screens, for dimming lights, it becomes difficult to actually grab the dimming slider to move rather than the whole screen. Would be nice to be able to disable the sliding function and just navigate screens using the bottom buttons or buttons created to direct links to other screens.

Re: Dashticz - Feature Requests

Posted: Saturday 17 March 2018 15:53
by Beschuitje
A find my iphone/friends feature.
Maybe with a map from GM lat. long.
Apple uses two way verification so thats going to be a problem

Re: Dashticz - Feature Requests

Posted: Friday 23 March 2018 19:44
by jake
Please add the option to the blocks to control the amount of digits. At the moment I calculate the outputs from several micro inverters together, to show the total power generation. It is displayed in Dashticz as 1250,00 W. I know this is how the info comes from Domoticz, but it would be nice to be able to shorten this display (in my case) to 1250 W. This would help as well to keep the whole text on 1 line.

Re: Dashticz - Feature Requests

Posted: Sunday 25 March 2018 20:14
by aiolos
jake wrote: Friday 23 March 2018 19:44 Please add the option to the blocks to control the amount of digits. At the moment I calculate the outputs from several micro inverters together, to show the total power generation. It is displayed in Dashticz as 1250,00 W. I know this is how the info comes from Domoticz, but it would be nice to be able to shorten this display (in my case) to 1250 W. This would help as well to keep the whole text on 1 line.
You can try the (undocumented) 'units' configuration option:

Code: Select all

config['units'] = {
    names: {
        kwh: 'kWh',
        watt: 'W',
    },
    decimals: {
        kwh: 2,
        watt: 0,
    },
    separators: {
        decimal: ',',
        thousands: '.'
    }
};

Re: Dashticz - Feature Requests

Posted: Tuesday 27 March 2018 19:12
by jake
aiolos wrote:
jake wrote: Friday 23 March 2018 19:44 Please add the option to the blocks to control the amount of digits. At the moment I calculate the outputs from several micro inverters together, to show the total power generation. It is displayed in Dashticz as 1250,00 W. I know this is how the info comes from Domoticz, but it would be nice to be able to shorten this display (in my case) to 1250 W. This would help as well to keep the whole text on 1 line.
You can try the (undocumented) 'units' configuration option:

Code: Select all

config['units'] = {
    names: {
        kwh: 'kWh',
        watt: 'W',
    },
    decimals: {
        kwh: 2,
        watt: 0,
    },
    separators: {
        decimal: ',',
        thousands: '.'
    }
};
Thanks this works for most of the electrical sensors.

It would be good to put the opion in the Wiki.

The PV-output sensor, which publishes the daily energy harvest on the dashboard, doesn't comply with the setting, it keeps the 3 digits accuracy and uses a '.' instead of the intended ','

Is it possible to add m3 gas to it as well? I don't really care for the last dm3/liter on the dashboard. 1 digit would be plenty to display

Re: Dashticz - Feature Requests

Posted: Wednesday 28 March 2018 20:22
by aiolos
jake wrote: Tuesday 27 March 2018 19:12
aiolos wrote:
jake wrote: Friday 23 March 2018 19:44 Please add the option to the blocks to control the amount of digits. At the moment I calculate the outputs from several micro inverters together, to show the total power generation. It is displayed in Dashticz as 1250,00 W. I know this is how the info comes from Domoticz, but it would be nice to be able to shorten this display (in my case) to 1250 W. This would help as well to keep the whole text on 1 line.
You can try the (undocumented) 'units' configuration option:

Code: Select all

config['units'] = {
    names: {
        kwh: 'kWh',
        watt: 'W',
    },
    decimals: {
        kwh: 2,
        watt: 0,
    },
    separators: {
        decimal: ',',
        thousands: '.'
    }
};
Thanks this works for most of the electrical sensors.

It would be good to put the opion in the Wiki.

The PV-output sensor, which publishes the daily energy harvest on the dashboard, doesn't comply with the setting, it keeps the 3 digits accuracy and uses a '.' instead of the intended ','

Is it possible to add m3 gas to it as well? I don't really care for the last dm3/liter on the dashboard. 1 digit would be plenty to display
it could be added for other sensors too, they are handled a bit different, but it should be possible to work the same way. I'll have a look how this can be reached.