Just to confirm: dar.nl works perfectly.
Toonz, thanks!
Moderators: marcelr, TerrorSource, Toonz, TheHogNL
Toonz wrote:odelay99 wrote:If you could make it work with https://inzamelkalender.hvcgroep.nl that would be great, but I think it will be hard as I do not see ant ICS support on the site.
Already supported and confirmed working by Ierlandfan.
Output is taken directly from their webserver, no need to use ics files for this provider.
Just enter "hvcgroep.nl" and your zipcode/housenr at the top of WastecollectionApp.qml.
Kind regardz,
Toonz
TechApprentice wrote:I would like to request the addition of the waste collection in Gemeente Westland.
I found on their own website some tool to check the up coming emptying date: https://www.gemeentewestland.nl/afval/a ... eling.html
.
b1r0n3r wrote:@Toonz; question nr2.. In the screenshots on the first pages, I notice the date is printed in the sceen-saver time tile.
please let me know how you did that?
[edit] hmkay.. found the myclock 'project' yesterday evening and played around with it a bit. showing the abbreviation of the weekday in front of the Bigtimetext. I want that!
With the risk of going pretty off-topic: how does one concatenate strings in a variable in qt?
And/or: could you share your clock app files with us?
function updateClockTiles() {
var now = new Date().getTime();
timeStr = i18n.dateTime(now,i18n.dow_full).substring(0,2).toLowerCase() + " " + i18n.dateTime(now, i18n.time_yes);
dateStr = i18n.dateTime(now, i18n.mon_full);
}
martijnd wrote:Could you add afvalkalender.rova.nl? the site does not support json, when logged in the data is available in the xhtml format.
any idea how to get that data into your app?
function wasteTypeCureAfvalbeheer(shortName) {
switch (shortName) {
case "GFT": return 3; //cyclusnv plus cureafvalbeheer
case "Groene": return 3; //katwijk.nl
case "Papier": return 2; //cureafvalbeheer
case "Oud pa": return 2; //cyclusnv.nl
case "Plastic": return 1; //cyclusnv.nl
case "Rest": return 0; //cyclusnv plus cureafvalbeheer
case "Grijze": return 0; //katwijk.nl
default: break;
}
return "?";
}
function wasteTypeCyclusnv(shortName) {
switch (shortName) {
case "GFT": return 3;
case "Papier": return 2;
case "Plasti": return 1;
case "Rest": return 0;
default: break;
}
return "?";
}
Users browsing this forum: No registered users and 1 guest