-
FIXED
: During startup of the Integration, it would sometimes logError Code: 500 - Error Status: Internal Server Error
. (Issue #249) This was caused by some values not being available at startup. -
CHANGE
: The serviceunifiprotect.save_thumbnail_image
now creates the directories in the filename if they do not exist. Issue #250. -
FIX
: We have started the integration of the new UFP-Sense devices, but these are not available in Europe yet, so the integration is not completed, and will not be, before I can get my hands on one of these devices. Some users with the devices, got a crash when running the latest version, which is now fixed. The integration is not completed, this fix, just removes the errors that were logged. Thanks to @michaeladam for finding this. -
NEW
: When the doorbell is pressed, the integration now fires an event with the typeunifiprotect_doorbell
. You can use this in automations instead of monitoring the binary sensor. The event will look like below and only fire when the doorbell is pressed, so there will be nofalse
event. If you have multiple doorbells you use theentity_id
value in thedata
section to check which doorbell was pressed.{ "event_type": "unifiprotect_doorbell", "data": { "ring": true, "entity_id": "binary_sensor.doorbell_kamera_doerklokke" }, "origin": "LOCAL", "time_fired": "2021-06-26T08:16:58.882088+00:00", "context": { "id": "6b8cbcecb61d75cbaa5035e2624a3051", "parent_id": null, "user_id": null } }