Renier Moorcroft

Results 81 comments of Renier Moorcroft

Hi BaQs, scratch the part of the alarm. I remembered wrong. Used to detect the "ability to " adjust sensibility. I'm busy optimizing code and looking at the /camera/cameraAction!findAllDevices.action endpoint....

Hi @BaQs, I modified your push request a bit to fix this bit: #camera.py """load detection sensibility""" if self._switch.get(DeviceSwitchType.AUTO_SLEEP.value) is not True: self._detection_sensibility = self._client.get_detection_sensibility( self._serial, self._device.get("supportExt").get("support_sensibility_adjust"), ) if self._switch.get(DeviceSwitchType.AUTO_SLEEP.value)...

Hi @BaQs, I added a json key check with exception for "SupportExt" to both camera and client. Would you mind testing the change?

Hi BaQs, Thank you for the gist dump, it helps a lot. The "supportext" is present in the response but it looks like the "support_sensibility_adjust" string isn't. I have removed...

Hi @uvjim, This is most likely a call to the ezviz CAS server. You'll need to use wireshark to capture the request. All calls to the ezviz cas server is...

Hi @maframan, Your python version is too old. The library requires v3.6 and newer.

Hi @andrewcoo101, I haven't implemented CLI arguments for the MFA code yet. You can can call `EzvizClient.login(sms_code="MFA code")` with your verification code and it should work. From my testing it...

Hi @andrewcoo101, This should now be fixed in the latest release 0.2.0.8. There where two data fields missing in the request causing it to fail with invalid code.

Hi @BaQs and @modestpharaoh, I have updated the pyezviz code to make use of the correct switch endpoint. Nice work! Note: The main app arg parser still needs to be...