I get this error in the push notification in my iPhone. All notifications works fine, and even this very notification has been working some weeks ago, showing both photo and streaming video on my iPhone.
This error occurs on several iPhones - Home Assistant for iOS 1.5.1
extensions.notification_content.error.no_entity_id
There is no photo arriving on my iPhone, only this message inside the pop-up window on the iPhone:
I am using the ttgo t-camera, flashed and connected in ESPHome
esphome:
name: ringeapparat
platform: ESP32
board: esp-wrover-kit
The log shows pictures are captured, and thus should be forewaded via the notification.
INFO Successfully connected to 192.168.1.112
[12:02:53][D][time:030]: Synchronized time: Mon Sep 16 12:02:53 2019
[12:02:53][C][esp32_camera:043]: ESP32 Camera:
[12:02:53][C][esp32_camera:044]: Name: Ringeapparat Camera
[12:02:53][C][esp32_camera:045]: Board Has PSRAM: YES
[12:02:53][C][esp32_camera:047]: Data Pins: D0:5 D1:14 D2:4 D3:15 D4:18 D5:23 D6:36 D7:39
[12:02:53][C][esp32_camera:048]: VSYNC Pin: 27
[12:02:53][C][esp32_camera:049]: HREF Pin: 25
[12:02:53][C][esp32_camera:050]: Pixel Clock Pin: 19
[12:02:53][C][esp32_camera:051]: External Clock: Pin:32 Frequency:20000000
[12:02:53][C][esp32_camera:052]: I2C Pins: SDA:13 SCL:12
[12:02:53][C][esp32_camera:053]: Reset Pin: -1
[12:02:53][C][esp32_camera:074]: Resolution: 640x480 (VGA)
[12:02:53][C][esp32_camera:097]: JPEG Quality: 10
[12:02:53][C][esp32_camera:099]: Contrast: 0
[12:02:53][C][esp32_camera:100]: Brightness: 0
[12:02:53][C][esp32_camera:101]: Saturation: 0
[12:02:53][C][esp32_camera:102]: Vertical Flip: ON
[12:03:03][D][esp32_camera:157]: Got Image: len=26070
[12:03:03][D][binary_sensor:033]: 'Ringeapparat PIR': Sending state ON
[12:03:03][D][binary_sensor:033]: 'Ringeapparat Button': Sending state ON
[12:03:04][D][api:573]: Client 'Home Assistant 0.98.5 (192.168.1.10)' connected successfully!
[12:03:04][D][binary_sensor:033]: 'Ringeapparat Button': Sending state OFF
[12:03:07][D][binary_sensor:033]: 'Ringeapparat PIR': Sending state OFF
[12:03:11][D][sensor:092]: 'Ringeapparat WiFi Signal': Sending state -68.00000 dB with 0 decimals of accuracy
[12:03:13][D][esp32_camera:157]: Got Image: len=24904
When the button on the ttgo camera is pressed
[12:03:03][D][binary_sensor:033]: 'Ringeapparat Button': Sending state ON
the action below is fired. The tts.google_say is working, and the message is sendt via notify.notify. No photo is showing, and the error shown above is displayed.
action:
- service: sonos.snapshot
- service: media_player.volume_set
data:
entity_id: media_player.kjokken
volume_level: 0.6
- service: tts.google_say
entity_id: media_player.kjokken, media_player.terrasse, media_player.soverom, media_player.lekerom, media_player.bad
data:
message: 'Det ringer på!'
cache: false
- service: notify.notify
data:
title: Ringeapparat, hoveddør
message: Hvem ringer på?
data:
attachment:
content-type: jpeg
push:
category: camera
entity_id: camera.ringeapparat_camera
- service: sonos.restore
ttgo t-camera do capture images (see log), but does not foreward the photo to the notify message.
What is going on here?