Read the statement by Michael Teeuw here.
Homewizard P1 meter
-
@CTL073 still works fine here. Not sure what errors you get?
-
@Hoaxr Mine is also stopped working. Try to set the url in whitelist but that seems to do nothing with it.
When copy the url in the browser i get the information on my screen so the url is right and working at the rasberry.
Only see the header on my mirror no data. -
@vansman it starts working again. After a few days the information is returned at the screen. No idea why.
-
I try to install with
git pull https://github.com/Hoaxr/MMM-HomeWizard.git
This failes. i got errors
remote: Counting objects: 100% (24/24), done. remote: Compressing objects: 100% (22/22), done. remote: Total 24 (delta 6), reused 12 (delta 0), pack-reused 0 (from 0) Unpacking objects: 100% (24/24), 7.95 KiB | 232.00 KiB/s, done. From https://github.com/Hoaxr/MMM-HomeWizard * branch HEAD -> FETCH_HEAD hint: You have divergent branches and need to specify how to reconcile them. hint: You can do so by running one of the following commands sometime before hint: your next pull: hint: hint: git config pull.rebase false # merge hint: git config pull.rebase true # rebase hint: git config pull.ff only # fast-forward only hint: hint: You can replace "git config" with "git config --global" to set a default hint: preference for all repositories. You can also pass --rebase, --no-rebase, hint: or --ff-only on the command line to override the configured default per hint: invocation. fatal: Need to specify how to reconcile divergent branches.
-
@htilburgs
Currently I’ve installed it with a work-around. -
@htilburgs that says you changed a file in the module, which you aren’t supposed to do.
git status would have shown the changed file(s)
git diff would have shown you the exact changesgit reset --hard HEAD
will force all the changes to be lost and the repo restored to the last commit
(and allow you to git pull)