Midea/Inventor (and other brand) Air Condition API

Topics (not sure which fora)
when not sure where to post, post here and mods will move it to right forum.

Moderators: leecollings, remb0

BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

Alain wrote: Thursday 25 November 2021 20:19 The error occurs within the msmart part of the deal. I see you opened an issue in my github repository about it, but you should really try to get an answer from over there. I'm willing to try when I have the opportunity to test it, but can't promise anything about it.
We will see :) Thanks anyway man!
I have found the issue about the login error, when using 4 units, the error comes in, but after i removed 2 usb sticks out the network the script is working again and found 2 (of the 3) units.

Code: Select all

midea-discover
INFO:msmart.cli:msmart version: 0.1.35 Currently only supports ac devices.
INFO:msmart.cli:Sending Device Scan Broadcast...
INFO:msmart.lan:Got TCP key for 192.168.1.103:43472 -> 192.168.1.34:6444 retries: 0 time: 0.54 bd***20
INFO:msmart.cli:*** Found a device: {'type': 'ac', 'support': True, 'version': 2, 'ip': '192.168.1.25', 'id': 1539316*9, 'port': 6444, 'token': None, 'key': None, 'ssid': 'net_ac_4A94'}
INFO:msmart.cli:*** Found a device: {'type': 'ac', 'support': True, 'version': 3, 'ip': '192.168.1.34', 'id': 3188583745*, 'port': 6444, 'token': 'F***', 'key': 'A0F0***', 'ssid': 'net_ac_3648'}
so, this is working.. then adding the plugin to domoticz give me:

Code: Select all

2021-11-26 20:37:17.295 Status: Slaapkamer: Entering work loop.
2021-11-26 20:37:17.295 Status: Slaapkamer: Started.
2021-11-26 20:37:17.774 Status: Slaapkamer: Initialized version 1.0.0, author 'Alain'
2021-11-26 20:37:17.777 Error: Slaapkamer: 'onStart' failed 'AttributeError':''device' object has no attribute 'setup''.
2021-11-26 20:37:17.777 Error: Slaapkamer: Exception traceback:
2021-11-26 20:37:17.777 Error: Slaapkamer: ----> Line 347 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onStart
2021-11-26 20:37:17.777 Error: Slaapkamer: ----> Line 61 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onStart
2021-11-26 20:37:27.096 Error: Slaapkamer: 'onHeartbeat' failed 'AttributeError':''device' object has no attribute 'setup''.
2021-11-26 20:37:27.096 Error: Slaapkamer: Exception traceback:
2021-11-26 20:37:27.096 Error: Slaapkamer: ----> Line 382 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onHeartbeat
2021-11-26 20:37:27.096 Error: Slaapkamer: ----> Line 268 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onHeartbeat
2021-11-26 20:37:27.096 Error: Slaapkamer: ----> Line 278 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function DataUpdate
also the "example.py" does not work:

Code: Select all

 python example.py
Traceback (most recent call last):
  File "example.py", line 2, in <module>
    from msmart.device import air_conditioning_device as ac
  File "/home/pi/domoticz/plugins/midea-msmart/msmart/device.py", line 16
    def convert_device_id_hex(device_id: int):
                                       ^
SyntaxError: invalid syntax
and yes, i have added the ip and id of the unit (V2) to test with in the example, but it keeps give me these error.. :shock:
Last edited by BarryT on Thursday 14 April 2022 17:38, edited 1 time in total.
hubs
Posts: 3
Joined: Friday 10 December 2021 13:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by hubs »

BarryT wrote: Friday 26 November 2021 20:36 so, this is working.. then adding the plugin to domoticz give me:

Code: Select all

2021-11-26 20:37:17.295 Status: Slaapkamer: Entering work loop.
2021-11-26 20:37:17.295 Status: Slaapkamer: Started.
2021-11-26 20:37:17.774 Status: Slaapkamer: Initialized version 1.0.0, author 'Alain'
2021-11-26 20:37:17.777 Error: Slaapkamer: 'onStart' failed 'AttributeError':''device' object has no attribute 'setup''.
2021-11-26 20:37:17.777 Error: Slaapkamer: Exception traceback:
2021-11-26 20:37:17.777 Error: Slaapkamer: ----> Line 347 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onStart
2021-11-26 20:37:17.777 Error: Slaapkamer: ----> Line 61 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onStart
2021-11-26 20:37:27.096 Error: Slaapkamer: 'onHeartbeat' failed 'AttributeError':''device' object has no attribute 'setup''.
2021-11-26 20:37:27.096 Error: Slaapkamer: Exception traceback:
2021-11-26 20:37:27.096 Error: Slaapkamer: ----> Line 382 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onHeartbeat
2021-11-26 20:37:27.096 Error: Slaapkamer: ----> Line 268 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function onHeartbeat
2021-11-26 20:37:27.096 Error: Slaapkamer: ----> Line 278 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py', function DataUpdate
I have exactly the same error.
Note that I'm using the latest release of midea-msmart 0.1.35 and the method setup() does not exist any more.
BarryT wrote: Friday 26 November 2021 20:36 also the "example.py" does not work:

Code: Select all

 python example.py
Traceback (most recent call last):
  File "example.py", line 2, in <module>
    from msmart.device import air_conditioning_device as ac
  File "/home/pi/domoticz/plugins/midea-msmart/msmart/device.py", line 16
    def convert_device_id_hex(device_id: int):
                                       ^
SyntaxError: invalid syntax
and yes, i have added the ip and id of the unit (V2) to test with in the example, but it keeps give me these error.. :shock:
This one is easy ;)
The python files are in python v3, so you shall call the example.py file with the python3 interpreter. Hence please try: python3 example.py
hubs
Posts: 3
Joined: Friday 10 December 2021 13:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by hubs »

Hello BarryT, Alain and all,

midea-msmart has evolved since Alain wrote the plugin and some incompatible changes were made in midea-msmart to allow the support of Midea 8370 devices which require a token and a key to authenticate.

I have updated the plugin to:
- support the latest midea_msmart 0.1.35
- support the 8370 devices
- fix several issues

BarryT, you can give a try in this branch: https://github.com/hubertverstraete/Qli ... 70_devices

Best
cheaterenator
Posts: 1
Joined: Thursday 27 January 2022 19:05
Target OS: Windows
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by cheaterenator »

Hello to all.

I'm trying to use this plugin (https://github.com/hubertverstraete/Qli ... 70_devices) on Windows (Domoticz Version: 2020.2 Python Version: 3.7.5) and i have problem with crypto module (in domoticz log I see entry: Module Import failed: ' Name: Crypto') but, msmart component is working OK, and I can control my AC by using attached example.py script. I don't understand where is problem with Domoticz? It's using different library then example script? Is it possible to use this plugin in Windows? My python installation is system-wide (in Program Files directory, not user directory).
I tried changing sys.path.append in plugin.py to windows-style but that not changed anything.
Alain
Posts: 166
Joined: Sunday 26 April 2020 5:27
Target OS: Linux
Domoticz version: 2022.1
Location: Netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by Alain »

I'm sorry I have not done any testing in a Windows environment, so can't help you out there.
Hue | Zigbee2Mqtt | MQTT | P1 | Xiaomi | RFXCom | Modbus | Qlima | Solaredge
TP-Link | Plugwise | Thermosmart | Node-Red | Grafana | Master and 5 remote servers
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

hubs wrote: Tuesday 14 December 2021 17:05 Hello BarryT, Alain and all,

midea-msmart has evolved since Alain wrote the plugin and some incompatible changes were made in midea-msmart to allow the support of Midea 8370 devices which require a token and a key to authenticate.

I have updated the plugin to:
- support the latest midea_msmart 0.1.35
- support the 8370 devices
- fix several issues

BarryT, you can give a try in this branch: https://github.com/hubertverstraete/Qli ... 70_devices

Best
This is great news.
Thanks! I will try it later this week and let you know 🙏🏾
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

Could you please write an little tutorial about how to install from begin till a working unit in domoticz on a raspberry?
I'm lost in errors over here and had this before.. :roll:
Many thanks..
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

Code: Select all

DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/iot/secure/getToken HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"system error","errorCode":"9999"}
DEBUG:msmart.cloud:Restarting session: '9999' - 'system error'
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/iot/secure/getToken HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"system error","errorCode":"9999"}
DEBUG:msmart.cloud:Restarting session: '9999' - 'system error'
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"login failed, loginId is empty, please login again.","errorCode":"3144"}
DEBUG:msmart.cloud:Restarting full: '3144' - 'login failed, loginId is empty, please login again.'
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"login failed, loginId is empty, please login again.","errorCode":"3144"}
DEBUG:msmart.cloud:Restarting full: '3144' - 'login failed, loginId is empty, please login again.'
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login/id/get HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"ok","result":{"loginId":"038b99f5-5195-4379-9031-d652ac97602d"},"errorCode":"0"}
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login/id/get HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"ok","result":{"loginId":"1978c75b-417d-49ef-b1f8-4f161bb8094d"},"errorCode":"0"}
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"password error,please enter again.","errorCode":"3101"}
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
^CDEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login HTTP/1.1" 200 None
DEBUG:msmart.cloud:Response: {"msg":"login failed, loginId is empty, please login again.","errorCode":"3144"}
DEBUG:msmart.cloud:Restarting full: '3144' - 'login failed, loginId is empty, please login again.'
DEBUG:urllib3.connectionpool:Starting new HTTPS connection (1): mapp.appsmb.com:443
DEBUG:urllib3.connectionpool:https://mapp.appsmb.com:443 "POST /v1/user/login/id/get HTTP/1.1" 200 None
what i'm doing wrong?
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

Hi all,

i just wanted to let you guys know that i have 1 of the units working so far.
On the github page i made an detailed topic of my issue.
Hope to see this fixed, then i'm happy user as well :)
If you're interested, its here: https://github.com/mac-zhou/midea-msmart/issues/72

Thanks so far!
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

V0.2.3 of the script fixed to get token with latest v3 units.
Everything works again.
BazemanKM
Posts: 35
Joined: Wednesday 22 July 2015 21:39
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BazemanKM »

Followed the steps at:
https://github.com/hubertverstraete/Qli ... 70_devices

pip3 install msmart
midea-discover
Was succesfull, can see my two airco's

Got
https://github.com/mac-zhou/midea-msmart in /home/pi/domoticz/plugins and added plugin.py

I can see the plugin after restart, after entering credentials and restart i get an error:

Code: Select all

2022-08-30 15:59:43.991 Error: Airco Zolder: (Qlima) failed to load 'plugin.py', Python Path used was '/home/pi/domoticz/plugins/midea-msmart/:/usr/lib/python38.zip:/usr/lib/python3.8:/usr/lib/python3.8/lib-dynload:/usr/local/lib/python3.8/dist-packages:/usr/lib/python3/dist-packages:/usr/lib/python3.8/dist-packages'.
2022-08-30 15:59:43.991 Error: Airco Zolder: Module Import failed: 'Path: /home/pi/domoticz/plugins/midea-msmart/msmart/device/__init__.py Name: msmart.device'
2022-08-30 15:59:43.991 Error: Airco Zolder: ----> Line 44 in '/home/pi/domoticz/plugins/midea-msmart/plugin.py'
Who has a solution?
User avatar
waltervl
Posts: 5859
Joined: Monday 28 January 2019 18:48
Target OS: Linux
Domoticz version: 2024.7
Location: NL
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by waltervl »

It seems that the msmart module has changed recently so perhaps that gives some issues in calling it now correctly in plugin.py
It probably needs some changes.... Unfortunately I don't have sufficient python skills.....
Domoticz running on Udoo X86 (on Ubuntu)
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
DarkAllMan
Posts: 52
Joined: Friday 23 December 2016 9:41
Target OS: Linux
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by DarkAllMan »

Question, does this script also work with a Qlima D630P Dehumidifier?
hubs
Posts: 3
Joined: Friday 10 December 2021 13:13
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by hubs »

waltervl wrote: Tuesday 30 August 2022 23:58 It seems that the msmart module has changed recently so perhaps that gives some issues in calling it now correctly in plugin.py
It probably needs some changes.... Unfortunately I don't have sufficient python skills.....
Hello
It is true that the midea-msmart module made a minor change which requires to be applied to the plugin.
I have updated the Qlima plugin and it is now working with midea-msmart v0.2.5
Last edited by hubs on Wednesday 19 October 2022 8:41, edited 1 time in total.
User avatar
waltervl
Posts: 5859
Joined: Monday 28 January 2019 18:48
Target OS: Linux
Domoticz version: 2024.7
Location: NL
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by waltervl »

Never change a winning team....
So if it works no changes needed.
Domoticz running on Udoo X86 (on Ubuntu)
Devices/plugins: ZigbeeforDomoticz (with Xiaomi, Ikea, Tuya devices), Nefit Easy, Midea Airco, Omnik Solar, Goodwe Solar
BazemanKM
Posts: 35
Joined: Wednesday 22 July 2015 21:39
Target OS: Raspberry Pi / ODroid
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BazemanKM »

hubs wrote: Tuesday 18 October 2022 21:59 I have updated the Qlima plugin and it is now working with midea-msmart v0.2.5
Thanx, working now.
lolomin
Posts: 21
Joined: Sunday 11 October 2015 16:48
Target OS: Linux
Domoticz version:
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by lolomin »

Hi,

Just tried to use the plugin.py at : https://github.com/hubertverstraete/Qli ... 70_devices
Put the plugin.py in the directory checkouted under plugins directory of domoticz from :
https://github.com/mac-zhou/midea-msmart

but when loading it with domoticz latest beta 14983, Domoticz crashed after adding a new Hardware with the IP Address, port, id ... :

This is the stack :

Code: Select all

2023-01-23 15:13:31.763  Error: Domoticz(pid:1, tid:39('Qlima Salon')) received fatal signal 11 (Segmentation fault)
2023-01-23 15:13:31.763  Error: siginfo address=0x1, address=0x7f2ff6ca15cb
2023-01-23 15:13:32.240  Status: PluginSystem: 4 plugins started.
2023-01-23 15:13:32.250  Error: Thread 32 (Thread 0x7f2fa8ff9700 (LWP 39)):
2023-01-23 15:13:32.250  Error: #0  0x00007f2ff6ca10ca in __waitpid (pid=129, stat_loc=0x7f2fa8feffe4, options=0) at ../sysdeps/unix/sysv/linux/waitpid.c:30
2023-01-23 15:13:32.250  Error: #1  0x000056410bd15797 in dumpstack_gdb(bool) ()
2023-01-23 15:13:32.250  Error: #2  0x000056410bd15d7e in signal_handler(int, siginfo_t*, void*) ()
2023-01-23 15:13:32.250  Error: #3  <signal handler called>
2023-01-23 15:13:32.250  Error: #4  raise (sig=11) at ../sysdeps/unix/sysv/linux/raise.c:50
2023-01-23 15:13:32.250  Error: #5  <signal handler called>
2023-01-23 15:13:32.250  Error: #6  0x00007f2ff58f0065 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #7  0x00007f2ff58f04ea in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #8  0x00007f2ff59575da in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #9  0x00007f2ff582e8e9 in PyParser_ASTFromStringObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #10 0x00007f2ff582efb8 in PyRun_StringFlags () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #11 0x00007f2ff5864b2c in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #12 0x00007f2ff5936c75 in _PyMethodDef_RawFastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #13 0x00007f2ff5937a05 in _PyCFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #14 0x00007f2ff57399fe in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #15 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #16 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #17 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #18 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #19 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #20 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #21 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #22 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #23 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #24 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #25 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #26 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #27 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #28 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #29 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #30 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #31 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #32 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #33 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #34 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #35 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #36 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #37 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #38 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #39 0x00007f2ff573829a in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #40 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #41 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #42 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #43 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #44 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #45 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #46 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #47 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #48 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #49 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #50 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #51 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #52 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #53 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #54 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #55 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #56 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #57 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #58 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #59 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #60 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #61 0x00007f2ff573829a in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #62 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #63 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #64 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #65 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #66 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #67 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #68 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #69 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #70 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #71 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #72 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #73 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #74 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #75 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #76 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #77 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #78 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #79 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #80 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #81 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #82 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #83 0x00007f2ff573829a in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #84 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #85 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #86 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #87 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #88 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #89 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #90 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #91 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #92 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #93 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #94 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #95 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #96 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #97 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #98 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #99 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #100 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #101 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #102 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #103 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #104 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #105 0x00007f2ff573829a in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #106 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #107 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #108 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #109 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #110 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #111 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #112 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #113 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #114 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #115 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #116 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #117 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #118 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #119 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #120 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #121 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #122 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #123 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #124 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #125 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #126 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #127 0x00007f2ff573829a in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #128 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #129 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #130 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #131 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #132 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #133 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #134 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #135 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #136 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #137 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #138 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #139 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #140 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #141 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #142 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #143 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #144 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #145 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #146 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #147 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #148 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #149 0x00007f2ff573829a in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #150 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #151 0x00007f2ff586046e in PyEval_EvalCodeEx () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #152 0x00007f2ff586123b in PyEval_EvalCode () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #153 0x00007f2ff5864bdd in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #154 0x00007f2ff5936f37 in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #155 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #156 0x00007f2ff5738700 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #157 0x00007f2ff58601e6 in _PyEval_EvalCodeWithName () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #158 0x00007f2ff5937123 in _PyFunction_FastCallKeywords () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #159 0x00007f2ff57389b5 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #160 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #161 0x00007f2ff573a154 in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #162 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #163 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #164 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.250  Error: #165 0x00007f2ff5736b3c in _PyEval_EvalFrameDefault () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #166 0x00007f2ff573b4d3 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #167 0x00007f2ff5937542 in _PyFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #168 0x00007f2ff5938d60 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #169 0x00007f2ff5939389 in _PyObject_CallMethodIdObjArgs () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #170 0x00007f2ff574383f in PyImport_ImportModuleLevelObject () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #171 0x00007f2ff58631d8 in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #172 0x00007f2ff5936e9b in _PyMethodDef_RawFastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #173 0x00007f2ff5937a45 in _PyCFunction_FastCallDict () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #174 0x00007f2ff5938bfb in ?? () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #175 0x00007f2ff593a0db in PyObject_CallFunction () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #176 0x00007f2ff5845faa in PyImport_Import () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #177 0x00007f2ff584619a in PyImport_ImportModule () from /usr/lib/x86_64-linux-gnu/libpython3.7m.so
2023-01-23 15:13:32.251  Error: #178 0x000056410c1169ba in Plugins::CPlugin::Initialise() ()
2023-01-23 15:13:32.251  Error: #179 0x000056410c118cfb in Plugins::CPlugin::Do_Work() ()
2023-01-23 15:13:32.251  Error: #180 0x000056410c3ac0bf in execute_native_thread_routine ()
2023-01-23 15:13:32.251  Error: #181 0x00007f2ff6c96fa3 in start_thread (arg=<optimized out>) at pthread_create.c:486
2023-01-23 15:13:32.251  Error: #182 0x00007f2ff6a1c06f in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
Anyone who have a solution for this please ?

Regards,

lolo
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

After months of troubles i've tried homeassistent and in there everything works directly without errors..
I think there are struggles with this plugin and msmart/midea app to use in domoticz.
BarryT
Posts: 369
Joined: Tuesday 31 March 2015 22:06
Target OS: Linux
Domoticz version: 2024.3
Location: east netherlands
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by BarryT »

Imo, i'm using other usb devices now and reflashed them in esphome with mqtt broker support so it works directly into domoticz without any other sources.

It's a win win now! Perfectly!

https://smartlight.me/smart-home-device ... -assistant
Screenshot_20230124_083220.jpg
Screenshot_20230124_083220.jpg (109.02 KiB) Viewed 2097 times
Screenshot_20230124_083213.jpg
Screenshot_20230124_083213.jpg (101.67 KiB) Viewed 2097 times
Screenshot_20230124_083442.jpg
Screenshot_20230124_083442.jpg (69.82 KiB) Viewed 2097 times
frankb
Posts: 1
Joined: Monday 21 August 2023 9:31
Target OS: Raspberry Pi / ODroid
Domoticz version: 2023.2
Location: Gelderland NL
Contact:

Re: Midea/Inventor (and other brand) Air Condition API

Post by frankb »

I have read this topic, but I can't get it to work.

Using midea-discover I get this

Code: Select all

./midea-discover
INFO:msmart cli:msmart version: 2 2 5 Currently only supports ac devices, only support MSmartHome and 美的美居 APP.
ERROR:msmart:*** Device not found, please read: *
The device is a v1 according to the info on in the app.

The USB wifi in the unit is qlima eu-odz104
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 1 guest