Hi,
Fist best wishes for 2024...
Has anybody on the forum a working powermeter that can be used in between f.i. a washing machine ?
background :
I use the tplink tapo for power measurement.
eg. to detect if washing machine is still running & others to detect if equipment is still running --> & Do some action when its is finished.
Since the firmware update ( vulnerability patch) op the TAPO devices there is no plugin for domoticz that is still working.
So now i am looking for a replacement power measurement that reports Watts & on/off in domoticz.
Thanks !
wanted : TP link TAPO replacement ?
Moderators: leecollings, remb0
-
- Posts: 272
- Joined: Sunday 11 May 2014 11:09
- Target OS: Windows
- Domoticz version: 2023.1+
- Location: NL
- Contact:
wanted : TP link TAPO replacement ?
Rpi & Win x64. Using : cam's,RFXCom, LaCrosse, RFY, HuE, google, standard Lua, Tasker, Waze traveltime, NLAlert&grip2+,curtains, vacuum, audioreceiver, smart-heating&cooling + many more (= automate all repetitive simple tasks)
- waltervl
- Posts: 5859
- Joined: Monday 28 January 2019 18:48
- Target OS: Linux
- Domoticz version: 2024.7
- Location: NL
- Contact:
Re: wanted : TP link TAPO replacement ?
Is there already an issue created on the plugin repository(ies)? Perhaps someone already working on it.
Domoticz running on Udoo X86 (on Ubuntu)
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
-
- Posts: 272
- Joined: Sunday 11 May 2014 11:09
- Target OS: Windows
- Domoticz version: 2023.1+
- Location: NL
- Contact:
Re: wanted : TP link TAPO replacement ?
Sure, but it seems abondoned with last update 3 years ago.Is there already an issue created on the plugin repository(ies)? Perhaps someone already working on it.
https://github.com/593304/Domoticz-Tapo
Found a working lib, but i am not a coder and i am not able to succeed in making a plugin from it.
https://github.com/mihai-dinculescu/tapo
It's a pitty cause these are cheap and did the job.
Rpi & Win x64. Using : cam's,RFXCom, LaCrosse, RFY, HuE, google, standard Lua, Tasker, Waze traveltime, NLAlert&grip2+,curtains, vacuum, audioreceiver, smart-heating&cooling + many more (= automate all repetitive simple tasks)
-
- Posts: 272
- Joined: Sunday 11 May 2014 11:09
- Target OS: Windows
- Domoticz version: 2023.1+
- Location: NL
- Contact:
Re: wanted : TP link TAPO replacement ?
I managed to use the https://github.com/mihai-dinculescu/tapo from within lua.
(also tried to make a plugin from this but i did not succeed)
If anyone is interested please let me know and i try to share my temp solution, (it will need some local adjustments on your side...)
(also tried to make a plugin from this but i did not succeed)
If anyone is interested please let me know and i try to share my temp solution, (it will need some local adjustments on your side...)
Rpi & Win x64. Using : cam's,RFXCom, LaCrosse, RFY, HuE, google, standard Lua, Tasker, Waze traveltime, NLAlert&grip2+,curtains, vacuum, audioreceiver, smart-heating&cooling + many more (= automate all repetitive simple tasks)
- waltervl
- Posts: 5859
- Joined: Monday 28 January 2019 18:48
- Target OS: Linux
- Domoticz version: 2024.7
- Location: NL
- Contact:
Re: wanted : TP link TAPO replacement ?
Looking on the issues of the TapoP100 library that the original plugin uses (also not maintained) there is a fork that seems to work. Perhaps remove the original TapoP100 module and install the fork could already help:
https://github.com/almottier/TapoP100
https://github.com/almottier/TapoP100
Domoticz running on Udoo X86 (on Ubuntu)
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
-
- Posts: 272
- Joined: Sunday 11 May 2014 11:09
- Target OS: Windows
- Domoticz version: 2023.1+
- Location: NL
- Contact:
Re: wanted : TP link TAPO replacement ?
Thank you ! Will investigate that one, seems more easy to call then my current temp solution.waltervl wrote: ↑Thursday 11 January 2024 13:13 Looking on the issues of the TapoP100 library that the original plugin uses (also not maintained) there is a fork that seems to work. Perhaps remove the original TapoP100 module and install the fork could already help:
https://github.com/almottier/TapoP100
Maybe it is possible to port the authentication from this one to the old plugin.
Its seems the only thing changed.
Rpi & Win x64. Using : cam's,RFXCom, LaCrosse, RFY, HuE, google, standard Lua, Tasker, Waze traveltime, NLAlert&grip2+,curtains, vacuum, audioreceiver, smart-heating&cooling + many more (= automate all repetitive simple tasks)
- waltervl
- Posts: 5859
- Joined: Monday 28 January 2019 18:48
- Target OS: Linux
- Domoticz version: 2024.7
- Location: NL
- Contact:
Re: wanted : TP link TAPO replacement ?
If you would make a PR (purge request) on the readme to the original plugin so the plugin owner can modify it.zicht wrote: ↑Friday 12 January 2024 14:18Thank you ! Will investigate that one, seems more easy to call then my current temp solution.waltervl wrote: ↑Thursday 11 January 2024 13:13 Looking on the issues of the TapoP100 library that the original plugin uses (also not maintained) there is a fork that seems to work. Perhaps remove the original TapoP100 module and install the fork could already help:
https://github.com/almottier/TapoP100
Maybe it is possible to port the authentication from this one to the old plugin.
Its seems the only thing changed.
So instead of using
Code: Select all
pip3 install PyP100
Code: Select all
pip install git+https://github.com/almottier/TapoP100.git@main
For you to test it run
Code: Select all
pip3 uninstall PyP100
Code: Select all
pip install git+https://github.com/almottier/TapoP100.git@main
Then the plugin should work if the authentication method in the TapoP100 module is the same.
Domoticz running on Udoo X86 (on Ubuntu)
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
Who is online
Users browsing this forum: Google [Bot] and 1 guest