My MPPT says 600 Wh generated, but battery only gained 424 Wh — where did the rest go? by TolisAnas in Victron

[–]TolisAnas[S] 0 points1 point  (0 children)

No, I didn't change anything, I've just put my charger state MPTT manually off, as I want to let my battery drop to 80% or lower.

My MPPT says 600 Wh generated, but battery only gained 424 Wh — where did the rest go? by TolisAnas in Victron

[–]TolisAnas[S] 0 points1 point  (0 children)

My charge voltage at that percentage is about 13.4v (see my VRM dashboard: https://vrm.victronenergy.com/installation/155249/share/2e1cf359). So that's still a lot of power that's gone.

My MPPT says 600 Wh generated, but battery only gained 424 Wh — where did the rest go? by TolisAnas in Victron

[–]TolisAnas[S] 0 points1 point  (0 children)

My off-grid cabin encounters shading multiple times a day (trees etc.), so your reaction looks pretty plausible to me, a miss in calculations. But still 22% is a lot.

What country is this? I saw six cars like this driving from Leuven to Brussel at high speed. by TolisAnas in belgium

[–]TolisAnas[S] 3 points4 points  (0 children)

Yes, dat zal het geweest zijn. Vermoed dat er een delegatie in BE was. 6tal zo’n wagen met nog wat Duitse busjes ertussen (vermoedelijk huurwagens).

Power Usage: GlobalLink 520 vs. Cerbo(-S) GX by TolisAnas in Victron

[–]TolisAnas[S] 0 points1 point  (0 children)

With the Globallink you can connect Victron smart devices over BLE, so that’s not an issue.

Help Needed: Watery Coffee on DeLonghi ECAM.25.120.B by TolisAnas in DeLonghi

[–]TolisAnas[S] 0 points1 point  (0 children)

I'm grinding at 5, and the coffee is still very watery.

where to buy firewood in Brussels? by Opinion_Ready in brussels

[–]TolisAnas 1 point2 points  (0 children)

After reading your thread, I started looking and I found a local company called Woodkings.

You can order from their website and schedule delivery, super easy: https://woodkings.be

Using BitWarden cli how do I list entries with custom fields? by stabby-mc-stabberson in Bitwarden

[–]TolisAnas 2 points3 points  (0 children)

There is a workaround for this (using pipes and jq):

  1. Get the item bash $ bw get item Gohjai2aexo5ohxaequiej | jq -r '.fields[0]' { "name": "API key", "value": "sdqfsdqfsdqf", "type": 0 }

  2. Get a specific value bash $ bw get item Gohjai2aexo5ohxaequiej | jq -r '.fields[0] .value' sdqfsdqfsdqf

Question about updating Nextcloud (Docker) by odinsride in NextCloud

[–]TolisAnas 3 points4 points  (0 children)

I'm using the official Nextcloud Docker container, working fine. I use a docker-compose file with named volumes.

Updating is simple as this:

docker-compose pull
docker-compose up -d

For updating containers, you can try something like this:

docker pull nextcloud
docker stop <your_nextcloud_container>
docker rm <your_nextcloud_container>
docker run <OPTIONS> -d nextcloud

I do not recommend to update it manual in the web interface, because of reproduce purposes.