Dashticz - Module - Garbage collector Topic is solved
Moderators: leecollings, htilburgs, robgeerts
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
git checkout beta
git pull
Sent from my SM-A320FL using Tapatalk
git pull
Sent from my SM-A320FL using Tapatalk
Re: Dashticz - Module - Garbage collector
Thanks a lot, will checkLokonli wrote:Merged into beta.klaaspiet wrote: ↑Wednesday 29 January 2020 21:25is there some progress for this itempeet3kabo wrote: ↑Saturday 25 August 2018 11:15 Rob, is it possible to implement the Omrin afvalkalender?
There is an app available from them, maybe to get the info you need? App called "Omrin Afval"
Otherwise it's only a PDF that you get and then I will try to implement it as an Ical into Dashicz but have to figure out how that goes,
Verstuurd vanaf mijn ONEPLUS A6013 met Tapatalk
-
- Posts: 26
- Joined: Sunday 09 February 2020 15:20
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Leeuwarden
- Contact:
Re: Dashticz - Module - Garbage collector
I updated to 3.4.0. (nice with the pics in the newsfeed )Lokonli wrote: ↑Thursday 20 February 2020 19:16Merged into beta.klaaspiet wrote: ↑Wednesday 29 January 2020 21:25is there some progress for this itempeet3kabo wrote: ↑Saturday 25 August 2018 11:15 Rob, is it possible to implement the Omrin afvalkalender?
There is an app available from them, maybe to get the info you need? App called "Omrin Afval"
Otherwise it's only a PDF that you get and then I will try to implement it as an Ical into Dashicz but have to figure out how that goes,
I tried to use Omrin. But i only get a black stripe on the column. So he does something, but he doesn't show something.
What i'm doing wrong?
Code: Select all
config['garbage_company'] = 'omrin';
config['garbage_icalurl'] = 0;
config['garbage_zipcode'] = 'My zipcode';
config['garbage_street'] = 'My street';
config['garbage_housenumber'] = '9';
config['garbage_maxitems'] = '3';
config['garbage_width'] = '12';
Code: Select all
columns[6] = {};
columns[6]['blocks'] = [['garbage']];
columns[6]['width'] = 4;
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
Try with:
Code: Select all
columns[6]['blocks'] = ['garbage'];
-
- Posts: 26
- Joined: Sunday 09 February 2020 15:20
- Target OS: Raspberry Pi / ODroid
- Domoticz version: 2020.1
- Location: Leeuwarden
- Contact:
Re: Dashticz - Module - Garbage collector
Then i get a real nice mess . He is putting all the things off screen 1 and 2 on 1 screen.Lokonli wrote: ↑Sunday 08 March 2020 11:16 Try with:Code: Select all
columns[6]['blocks'] = ['garbage'];
But still a black stripe, with no info.
Even if i empty the complete config.js and only put the next in it, i only get a black stipe
Code: Select all
var config = {}
config['language'] = 'nl_NL';
config['domoticz_ip'] = 'http://xxx.xxx.xxx.xxx:8080';
config['domoticz_refresh'] = '3';
config['dashticz_refresh'] = '60';
config['auto_positioning'] = 0; // Use 0 thisifyou have defined your own columns
config['timeformat'] = 'DD-MM-YY HH:mm';
config['calendarformat'] = 'dd D MMM HH:mm';
config['calendarlanguage'] = 'nl_NL';
config['hide_topbar'] = 1;
config['last_update'] = 0;
//config['standby_after'] = 5;
config['default_news_url'] = 'http://www.nu.nl/rss/Algemeen';
config['garbage_company'] = 'omrin';
config['garbage_icalurl'] = 0;
config['garbage_zipcode'] = 'My zipcode';
config['garbage_street'] = 'My street';
config['garbage_housenumber'] = '9';
config['garbage_maxitems'] = '3';
config['garbage_width'] = '12';
columns[6] = {} ;
columns[6]['blocks'] = [['garbage']];
columns[6]['width'] = 12;
var screens = {}
screens[1] = {}
screens[1]['columns'] = [6]
-
- Posts: 34
- Joined: Tuesday 09 January 2018 8:29
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: Harlingen
- Contact:
Re: Dashticz - Module - Garbage collector
Alfagek wrote: ↑Sunday 08 March 2020 11:24Then i get a real nice mess . He is putting all the things off screen 1 and 2 on 1 screen.Lokonli wrote: ↑Sunday 08 March 2020 11:16 Try with:Code: Select all
columns[6]['blocks'] = ['garbage'];
But still a black stripe, with no info.
Even if i empty the complete config.js and only put the next in it, i only get a black stipeCode: Select all
var config = {} config['language'] = 'nl_NL'; config['domoticz_ip'] = 'http://xxx.xxx.xxx.xxx:8080'; config['domoticz_refresh'] = '3'; config['dashticz_refresh'] = '60'; config['auto_positioning'] = 0; // Use 0 thisifyou have defined your own columns config['timeformat'] = 'DD-MM-YY HH:mm'; config['calendarformat'] = 'dd D MMM HH:mm'; config['calendarlanguage'] = 'nl_NL'; config['hide_topbar'] = 1; config['last_update'] = 0; //config['standby_after'] = 5; config['default_news_url'] = 'http://www.nu.nl/rss/Algemeen'; config['garbage_company'] = 'omrin'; config['garbage_icalurl'] = 0; config['garbage_zipcode'] = 'My zipcode'; config['garbage_street'] = 'My street'; config['garbage_housenumber'] = '9'; config['garbage_maxitems'] = '3'; config['garbage_width'] = '12'; columns[6] = {} ; columns[6]['blocks'] = [['garbage']]; columns[6]['width'] = 12; var screens = {} screens[1] = {} screens[1]['columns'] = [6]
I got the same problem
-
- Posts: 230
- Joined: Saturday 21 July 2018 19:03
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Home@Belgium
- Contact:
Re: Dashticz - Module - Garbage collector
why do you use double [[
columns[6]['blocks'] = [['garbage']];
columns[6]['blocks'] = [['garbage']];
-
- Posts: 230
- Joined: Saturday 21 July 2018 19:03
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Home@Belgium
- Contact:
Re: Dashticz - Module - Garbage collector
still keep saying 'laden' on my versionLokonli wrote: ↑Thursday 23 January 2020 20:19Fixed in latest beta.evandenbroek wrote: ↑Thursday 23 January 2020 19:44 I cannot retrieve data for Uden. I got the message "Laden...". I'm using version 3.3.4 beta.
-
- Posts: 230
- Joined: Saturday 21 July 2018 19:03
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Home@Belgium
- Contact:
Re: Dashticz - Module - Garbage collector
looking in my apache error log i see this error
this is line 3
echo file_get_contents($_SERVER["QUERY_STRING"]);
Code: Select all
[Mon Mar 09 00:03:22.403972 2020] [:error] [pid 3681] [client xxx.xxx.xxx.Xxx:xxxx] PHP Warning: file_get_contents(https://www.ophaalkalender.be/calendar/findstreets/?query=xxxxxxxxxxxxxxxxxxxxxx): failed to open stream: operation failed in /var/www/html/homecontrol/vendor/dashticz/cors.php on line 3, referer: http://10.10.40.3/homecontrol/
echo file_get_contents($_SERVER["QUERY_STRING"]);
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
I see you are using ophaalkalender.be. Probably something changed at their side. Can you provide a valid streetname, housenumber and zipcode? Then I'll test.Gianni wrote: ↑Monday 09 March 2020 0:22 looking in my apache error log i see this error
this is line 3Code: Select all
[Mon Mar 09 00:03:22.403972 2020] [:error] [pid 3681] [client xxx.xxx.xxx.Xxx:xxxx] PHP Warning: file_get_contents(https://www.ophaalkalender.be/calendar/findstreets/?query=xxxxxxxxxxxxxxxxxxxxxx): failed to open stream: operation failed in /var/www/html/homecontrol/vendor/dashticz/cors.php on line 3, referer: http://10.10.40.3/homecontrol/
echo file_get_contents($_SERVER["QUERY_STRING"]);
-
- Posts: 230
- Joined: Saturday 21 July 2018 19:03
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Home@Belgium
- Contact:
Re: Dashticz - Module - Garbage collector
pb @Lokonli
-
- Posts: 34
- Joined: Tuesday 09 January 2018 8:29
- Target OS: Raspberry Pi / ODroid
- Domoticz version: beta
- Location: Harlingen
- Contact:
Re: Dashticz - Module - Garbage collector
this is what i got
config['garbage_company'] = 'omrin';
config['garbage_icalurl'] = 0;
config['google_api_key'] = 0;
config['garbage_calendar_id'] = 0;
config['garbage_zipcode'] = 'xxxxxx';
config['garbage_street'] = 'xxxx';
config['garbage_housenumber'] = 'xx';
config['garbage_housenumberadd'] = 0;
config['garbage_maxitems'] = '3';
config['garbage_width'] = '12';
columns[3] = {}
columns[3]['blocks'] = [buttons.buienradar,'garbage']
columns[3]['width'] = 2;
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
Did you already update to the latest beta? :klaaspiet wrote: ↑Monday 09 March 2020 11:29Aantekening 2020-03-09 112723.png
this is what i got
config['garbage_company'] = 'omrin';
config['garbage_icalurl'] = 0;
config['google_api_key'] = 0;
config['garbage_calendar_id'] = 0;
config['garbage_zipcode'] = 'xxxxxx';
config['garbage_street'] = 'xxxx';
config['garbage_housenumber'] = 'xx';
config['garbage_housenumberadd'] = 0;
config['garbage_maxitems'] = '3';
config['garbage_width'] = '12';
columns[3] = {}
columns[3]['blocks'] = [buttons.buienradar,'garbage']
columns[3]['width'] = 2;
Code: Select all
git checkout beta
git pull
config['garbage_housenumberadd'] = 0;
Can you send me your zipcode and housenumber by PM, then I'll test tonight.
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
There was a small bug in the Omrin garbage module for housenumbers > 9.klaaspiet wrote: ↑Sunday 08 March 2020 19:56Alfagek wrote: ↑Sunday 08 March 2020 11:24Then i get a real nice mess . He is putting all the things off screen 1 and 2 on 1 screen.Lokonli wrote: ↑Sunday 08 March 2020 11:16 Try with:Code: Select all
columns[6]['blocks'] = ['garbage'];
But still a black stripe, with no info.
Even if i empty the complete config.js and only put the next in it, i only get a black stipeCode: Select all
var config = {} config['language'] = 'nl_NL'; config['domoticz_ip'] = 'http://xxx.xxx.xxx.xxx:8080'; config['domoticz_refresh'] = '3'; config['dashticz_refresh'] = '60'; config['auto_positioning'] = 0; // Use 0 thisifyou have defined your own columns config['timeformat'] = 'DD-MM-YY HH:mm'; config['calendarformat'] = 'dd D MMM HH:mm'; config['calendarlanguage'] = 'nl_NL'; config['hide_topbar'] = 1; config['last_update'] = 0; //config['standby_after'] = 5; config['default_news_url'] = 'http://www.nu.nl/rss/Algemeen'; config['garbage_company'] = 'omrin'; config['garbage_icalurl'] = 0; config['garbage_zipcode'] = 'My zipcode'; config['garbage_street'] = 'My street'; config['garbage_housenumber'] = '9'; config['garbage_maxitems'] = '3'; config['garbage_width'] = '12'; columns[6] = {} ; columns[6]['blocks'] = [['garbage']]; columns[6]['width'] = 12; var screens = {} screens[1] = {} screens[1]['columns'] = [6]
I got the same problem
This has been fixed in latest beta.
-
- Posts: 118
- Joined: Saturday 21 December 2019 8:36
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
When I implement the garbage collector I get a Dashticz message in red at the bottom of the screen: "Domoticz error! Garbage requires a PHP enabled web server".
I tried to uninstall php-xml, php-curl, php and apache2 and did a new install as mentioned on https://www.domoticz.com/wiki/Dashticz_ ... stallation, but it doesn't change. When I remove the garbage block from the Dashticz screen the error disappears.
I run Dashticz and Domoticz on a RPI with an OSMC image.
Does anyone know how this can be solved?
I tried to uninstall php-xml, php-curl, php and apache2 and did a new install as mentioned on https://www.domoticz.com/wiki/Dashticz_ ... stallation, but it doesn't change. When I remove the garbage block from the Dashticz screen the error disappears.
I run Dashticz and Domoticz on a RPI with an OSMC image.
Does anyone know how this can be solved?
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
You are using outdated instructions.JanvdW wrote: ↑Thursday 19 March 2020 10:43 When I implement the garbage collector I get a Dashticz message in red at the bottom of the screen: "Domoticz error! Garbage requires a PHP enabled web server".
I tried to uninstall php-xml, php-curl, php and apache2 and did a new install as mentioned on https://www.domoticz.com/wiki/Dashticz_ ... stallation, but it doesn't change. When I remove the garbage block from the Dashticz screen the error disappears.
I run Dashticz and Domoticz on a RPI with an OSMC image.
Does anyone know how this can be solved?
Try this:
https://dashticz.readthedocs.io/en/mast ... ation.html
-
- Posts: 70
- Joined: Monday 14 December 2015 22:16
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Mierlo
- Contact:
Re: Dashticz - Module - Garbage collector
Hi,
It seems that Cure has changed to mijnafvalwijzer.nl.
How do i switch to this new garbage data provider ?
Not Working anymore : https://afvalkalender.cure-afvalbeheer. ... n/5731LB-6
Working (at least i get some json data) : http://json.mijnafvalwijzer.nl/?method= ... isnummer=6
Regards
Peer
It seems that Cure has changed to mijnafvalwijzer.nl.
How do i switch to this new garbage data provider ?
Not Working anymore : https://afvalkalender.cure-afvalbeheer. ... n/5731LB-6
Working (at least i get some json data) : http://json.mijnafvalwijzer.nl/?method= ... isnummer=6
Regards
Peer
-
- Posts: 2260
- Joined: Monday 29 August 2016 22:40
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Contact:
Re: Dashticz - Module - Garbage collector
This one is easy (I hope). Switch to mijnafvalwijzer.nlpeerkersezuuker wrote: ↑Saturday 18 April 2020 15:18 Hi,
It seems that Cure has changed to mijnafvalwijzer.nl.
How do i switch to this new garbage data provider ?
Not Working anymore : https://afvalkalender.cure-afvalbeheer. ... n/5731LB-6
Working (at least i get some json data) : http://json.mijnafvalwijzer.nl/?method= ... isnummer=6
Regards
Peer
Code: Select all
config['garbage_company'] = 'mijnafvalwijzer';
-
- Posts: 70
- Joined: Monday 14 December 2015 22:16
- Target OS: Raspberry Pi / ODroid
- Domoticz version:
- Location: Mierlo
- Contact:
Re: Dashticz - Module - Garbage collector
Hi Lokonli,
Thank you, that made a little fix (i think).
When i connect to /vendor/dashticz/garbage/index.php?service=mijnafvalwijzer&sub=undefined&zipcode=5731LB&nr=6&t=
i get a pretty json response :
And when i open inspect is see an error about the mapGarbageType :
Thank you, that made a little fix (i think).
When i connect to /vendor/dashticz/garbage/index.php?service=mijnafvalwijzer&sub=undefined&zipcode=5731LB&nr=6&t=
i get a pretty json response :
- Spoiler: show
And when i open inspect is see an error about the mapGarbageType :
- Spoiler: show
Who is online
Users browsing this forum: mark.sellwood and 1 guest