Hi.
Which PI5 OS is best suited for MM?

Managed to get my hands on a PI5 and want to test all my modules’ performance on the PI5. But before I run into setup issues, which version works best with MM?
Thanks
Hi.
Which PI5 OS is best suited for MM?

Managed to get my hands on a PI5 and want to test all my modules’ performance on the PI5. But before I run into setup issues, which version works best with MM?
Thanks
@sdetweil Seems like rpi-connect is still in beta. May be a viable option if no relay is required else the lag could be nasty as the turn server is located in the OK.
@anton2023 Can you please explain
@anton2023 said in mmm-netatmo:
following morning after the pi shutdown
Are you switching off the PI completely? have you tried running the PI through the evening?
If I read the code correctly, it fetches the new token after the refresh interval. But if the PI was shutdown, it requires a valid token to start working again. If the PI is not shutdown, the module should run fine, fetching the new token if the old one has expired as it would do throughout the day.
@tfergy You may want to look at these config options. Have a read through the options list on the Github page.

@BKeyport Seems to load just fine for me.
@sdetweil Maybe the getting started document/page must be updated to reflect usage of your script. The old initial method is outdated and you script is so much easier and would save lots of user pain and grief.
@geronimodupree You may want to comment out both the suspend and resume modules. I have and it works just fine.

And working fine on each page:

@geronimodupree I think the following is the problematic code.
resume: function() {
this.updateTimer = setInterval(()=> {
this.updateData();
}, this.config.updateInterval);
this.schedulePopInterval();
},
You can comment that out and it should work as expected. When MMM-pages “resumes” the module, the module forces a refresh.
@angeliKITTYx You may want to have a look at MMM-MyGarbage. Looks like it may do what you want. You can setup your own schedule with it.
OR
You could look at the following one as well.
MMM-MyWastePickup
@Peter Sorry about that Peter. If there is nothing further please remember to mark as resolved.
There is another option. You can use my module, MMM-NewsAPI which has a language option. It will bring up news from multiple source with the language of nl.
Just follow the instructions on the Github page.

You can use your existing NewsAPI apiKey.
You can use the following configuration.
{
module: "MMM-NewsAPI",
//header: "news",
position: "bottom_center",
disabled: false,
config: {
apiKey: "your-api-key-goes-here",
choice: "headlines",
pageSize: 20,
sortBy: "publishedAt",
drawInterval: 1000*30,
templateFile: "template.html",
fetchInterval: 1000*60*60,
query: {
country: "",
category: "",
q: "",
qInTitle: "",
sources: "",
domains: "",
excludeDomains: "",
language: "nl"
}
}
}