masman
(MichaelAAMI)
July 6, 2023, 2:22pm
92
Hi @BertrumUK I had been using the HACS version for quite a long time. I tried deleting my existing Fully integration and installing again but an error was thrown. This evening I will try again after turning on additional logging. I wonder if there was some cleanup that didn’t happen when the HACS version was uninstalled.
zigomatic
(zigomatic)
July 6, 2023, 2:34pm
93
Hello, What are your cpu usage after updating to 2023.7 ?
Mine increase from -+ 9% to 35%. Nothing special in logs.
HA core python3 process is taking 100% cpu.
I shutdown / restart but still facing the same after some minutes. It’s like having a loop somewhere but
take time to find the root cause of this.
haip
July 6, 2023, 2:38pm
94
How do you update that image entity? I tried an image template with my doorbell snapshot image. But it is not updated automatically after a new snapshot image is created.
Your best bet would be a trigger template in that case?
otoh, I cant even figure out how to get the correct url there:
- unique_id: last_snapshot_oprit_camera
name: Last snapshot oprit camera
url: 'http://<my_server>.local:<port>/media/local/snapshots/camera_oprit.jpg'
verify_ssl: false
wont show anything
lugolven
(Lucas GOLVEN)
July 6, 2023, 3:32pm
97
I’m seeing the same issue on iOS too. The app is freezing after 3-4 seconds after I made the update.
This url is working for me for images in www folder:
url: http://xxxxxxxxxxxx.local:port/local/platerecogniser/platerecognizer_drive_last_motion_latest.png
just got my self auto banned…
thing is I create those images using:
- service: camera.snapshot
data:
filename: >
/media/snapshots/camera_oprit.jpg
target:
entity_id: camera.oprit
- service: notify.mobile_app_marijn
data:
message: '📸 Snapshot: Iemand bij de Oprit! 🔔'
data:
image: /media/local/snapshots/camera_oprit.jpg
so I have 2 folder with those images. neither of them works in that new template image yet…
yes I know that seems odd. However, it is the correct path to have the IOS app serve that image to a notification, I just went outside to check it once again.
The image is written in /media/snapshots/camera_oprit.jpg
and the notification just sent it fine using that /media/local/snapshots/camera_oprit.jpg
path containing the additional /local/
the other images are created using a date template, full disclosure:
script:
create_snapshot_poort:
alias: Create snapshot Oprit
mode: restart
sequence:
- service: camera.snapshot
data:
filename: >
/media/snapshots/oprit_{{now().strftime('%Y_%m_%d_%H_%M')}}.jpg
target:
entity_id: camera.oprit
- service: camera.snapshot
data:
filename: >
/media/snapshots/camera_oprit.jpg
target:
entity_id: camera.oprit
- service: notify.mobile_app_marijn
data:
message: '📸 Snapshot: Iemand bij de Oprit! 🔔'
data:
image: /media/local/snapshots/camera_oprit.jpg
what’s more, that image does not show in the Dashboard, using the type: picture-entity
and gets the Computer banned because of: with invalid authentication
otoh services:
- service: camera.play_stream
target:
entity_id: camera.oprit
data:
media_player: media_player.googlehome_hub
format: hls
and even:
- service: browser_mod.more_info
data:
entity: camera.oprit
work without issue, so its the authorization of that actual image in the media folder causing the problem, even though set ssl to false
bdraco
(J. Nick Koston)
July 6, 2023, 4:07pm
102
Shelly has their own development cycle which isn’t tied to HA. If they add support for grouping advertisement data, we will be happy to update HA to consume that change.
1 Like
sophof
(Sophof)
July 6, 2023, 4:20pm
103
Seems it’ll be fixed in 2023.7.1
home-assistant:dev
← home-assistant:slimproto-fix
opened 02:20PM - 06 Jul 23 UTC
## Proposed change
The PlayerStates enum was changed upstream, handle this in t… he HA integration as well.
Fixes a KeyError on the renamed IDLE playerstate vs STOPPED
## Type of change
- [ ] Dependency upgrade
- [X] Bugfix (non-breaking change which fixes an issue)
- [ ] New integration (thank you!)
- [ ] New feature (which adds functionality to an existing integration)
- [ ] Deprecation (breaking change to happen in the future)
- [ ] Breaking change (fix/feature causing existing functionality to break)
- [ ] Code quality improvements to existing code or addition of tests
## Additional information
<!--
Details are important, and help maintainers processing your PR.
Please be sure to fill out additional details, if applicable.
-->
- This PR fixes or closes issue: fixes #95965
- This PR is related to issue:
- Link to documentation pull request:
## Checklist
<!--
Put an `x` in the boxes that apply. You can also fill these out after
creating the PR. If you're unsure about any of them, don't hesitate to ask.
We're here to help! This is simply a reminder of what we are going to look
for before merging your code.
-->
- [ ] The code change is tested and works locally.
- [ ] Local tests pass. **Your PR cannot be merged unless tests pass**
- [ ] There is no commented out code in this PR.
- [ ] I have followed the [development checklist][dev-checklist]
- [ ] I have followed the [perfect PR recommendations][perfect-pr]
- [ ] The code has been formatted using Black (`black --fast homeassistant tests`)
- [ ] Tests have been added to verify that the new code works.
If user exposed functionality or configuration variables are added/changed:
- [ ] Documentation added/updated for [www.home-assistant.io][docs-repository]
If the code communicates with devices, web services, or third-party tools:
- [ ] The [manifest file][manifest-docs] has all fields filled out correctly.
Updated and included derived files by running: `python3 -m script.hassfest`.
- [ ] New or updated dependencies have been added to `requirements_all.txt`.
Updated by running `python3 -m script.gen_requirements_all`.
- [ ] For the updated dependencies - a link to the changelog, or at minimum a diff between library versions is added to the PR description.
- [ ] Untested files have been added to `.coveragerc`.
<!--
This project is very active and we have a high turnover of pull requests.
Unfortunately, the number of incoming pull requests is higher than what our
reviewers can review and merge so there is a long backlog of pull requests
waiting for review. You can help here!
By reviewing another pull request, you will help raise the code quality of
that pull request and the final review will be faster. This way the general
pace of pull request reviews will go up and your wait time will go down.
When picking a pull request to review, try to choose one that hasn't yet
been reviewed.
Thanks for helping out!
-->
To help with the load of incoming pull requests:
- [ ] I have reviewed two other [open pull requests][prs] in this repository.
[prs]: https://github.com/home-assistant/core/pulls?q=is%3Aopen+is%3Apr+-author%3A%40me+-draft%3Atrue+-label%3Awaiting-for-upstream+sort%3Acreated-desc+review%3Anone+-status%3Afailure
<!--
Thank you for contributing <3
Below, some useful links you could explore:
-->
[dev-checklist]: https://developers.home-assistant.io/docs/development_checklist/
[manifest-docs]: https://developers.home-assistant.io/docs/creating_integration_manifest/
[quality-scale]: https://developers.home-assistant.io/docs/integration_quality_scale_index/
[docs-repository]: https://github.com/home-assistant/home-assistant.io
[perfect-pr]: https://developers.home-assistant.io/docs/review-process/#creating-the-perfect-pr
1 Like
tom_l
July 6, 2023, 4:22pm
104
Yeah I saw that. Just waiting for '7.1 now.
Cadster
(Cadster)
July 6, 2023, 5:22pm
105
I have got the same issue, my miscale does not work with esphome since my upgrade to 2023.7 docker.
My mi temp/hum sensors still work as are my miflora sensors. Until it’s fixed i go back to OpenMQTT Gateway wich simply works.
update:
miscale issue is solved by esphome 2023.6.5
@disforw … Thanks for the hard work you guys did for the QNAP … Awesome finally via UI
1 Like
Upgrading 2023.6.4 → 2023.7.0 went rather smooth.
So far only one issue was observed - “Demo” platform causes errors & creates plenty of entities:
opened 06:24PM - 06 Jul 23 UTC
integration: demo
### The problem
I have 3 types of entities of Demo integration defined in y… aml:
```
cover:
- platform: demo
light:
- platform: demo
device_tracker:
- platform: demo
```
These is defined according to Docs (https://www.home-assistant.io/integrations/demo/).
After upgrading to 2023.7 these errors are present in Log:
2023-07-06 01:16:43.567 ERROR (MainThread) [homeassistant.components.light] The demo platform for the light integration does not support platform setup. Please remove it from your config.
2023-07-06 01:16:43.568 ERROR (MainThread) [homeassistant.components.cover] The demo platform for the cover integration does not support platform setup. Please remove it from your config.
On "Integrations" page a new entry was automatically added:
![image](https://github.com/home-assistant/core/assets/71872483/4781bdf2-6eba-4ff6-9c25-10453129574b)
and plenty of demo entities were added too (for thermostat etc):
![image](https://github.com/home-assistant/core/assets/71872483/32910997-73a4-4e4b-a22b-c586e9ebbd71)
What I expect:
1. Only entities specified in yaml are added.
2. No errors in Log.
### What version of Home Assistant Core has the issue?
2023.7
### What was the last working version of Home Assistant Core?
_No response_
### What type of installation are you running?
Home Assistant Container
### Integration causing the issue
Demo
### Link to integration documentation on our website
https://www.home-assistant.io/integrations/demo/
### Diagnostics information
_No response_
### Example YAML snippet
_No response_
### Anything in the logs that might be useful for us?
_No response_
### Additional information
_No response_
Check out this issue:
opened 10:29AM - 30 Jun 23 UTC
### The problem
I have 5 ESP32's and about 8 to 10 temperature sensors. All of… them being either LYWSDCGQ or CGDK2.
The last update broke them all. They will only (might) report once after the ESP32 is restarted. They never report a second time.
### Which version of ESPHome has the issue?
2023.6.3
### What type of installation are you using?
Home Assistant Add-on
### Which version of Home Assistant has the issue?
2023.7.0b2
### What platform are you using?
ESP32
### Board
mhetesp32devkit
### Component causing the issue
xiaomi_lywsdcgq, xiaomi_cgdk2
### Example YAML snippet
```yaml
e.g. CGDK2
sensor:
- platform: xiaomi_cgdk2
mac_address: "58:2D:34:12:BC:7C"
bindkey: "f6d5a0db976d1c758a23b24807e0ff2b"
temperature:
name: Server Room Temperature
humidity:
name: Server Room Humidity
battery_level:
name: Server Room Battery Level
```
e.g.LYWSDCGQ
```
sensor:
- platform: xiaomi_lywsdcgq
mac_address: !secret mijia_ble_temperature_3
temperature:
name: "Master Bathroom Temperature"
device_class: "temperature"
state_class: "measurement"
humidity:
name: "Master Bathroom Humidity"
device_class: "humidity"
state_class: "measurement"
battery_level:
name: "Master Bathroom Temperature Sensor Battery Level"
```
```
### Anything in the logs that might be useful for us?
```txt
here's the logs from one showing the issue, you'll see a single update from one of the 2 configured sensors, and nothing ever again.
INFO ESPHome 2023.6.3
INFO Reading configuration /config/esphome/master_closet_esp32.yaml...
WARNING 'master_closet_esp32': Using the '_' (underscore) character in the hostname is discouraged as it can cause problems with some DHCP and local name services. For more information, see https://esphome.io/guides/faq.html#why-shouldn-t-i-use-underscores-in-my-device-name
INFO Starting log output from master_closet_esp32.local using esphome API
INFO Successfully connected to master_closet_esp32.local
[06:11:47][I][app:102]: ESPHome version 2023.6.3 compiled on Jun 29 2023, 10:08:45
[06:11:47][C][wifi:543]: WiFi:
[06:11:47][C][wifi:379]: Local MAC: 84:CC:A8:5D:13:60
[06:11:47][C][wifi:380]: SSID: [redacted]
[06:11:47][C][wifi:381]: IP Address: 192.168.20.14
[06:11:47][C][wifi:383]: BSSID: [redacted]
[06:11:47][C][wifi:384]: Hostname: 'master_closet_esp32'
[06:11:47][C][wifi:386]: Signal strength: -69 dB ▂▄▆█
[06:11:47][C][wifi:390]: Channel: 11
[06:11:47][C][wifi:391]: Subnet: 255.255.255.0
[06:11:47][C][wifi:392]: Gateway: 192.168.20.1
[06:11:47][C][wifi:393]: DNS1: 192.168.20.1
[06:11:47][C][wifi:394]: DNS2: 0.0.0.0
[06:11:47][C][logger:301]: Logger:
[06:11:47][C][logger:302]: Level: DEBUG
[06:11:47][C][logger:303]: Log Baud Rate: 115200
[06:11:47][C][logger:305]: Hardware UART: UART0
[06:11:47][C][template.sensor:022]: Template Sensor 'Master Bathroom Temperature Sensor Number'
[06:11:47][C][template.sensor:022]: State Class: ''
[06:11:47][C][template.sensor:022]: Unit of Measurement: ''
[06:11:47][C][template.sensor:022]: Accuracy Decimals: 1
[06:11:47][C][template.sensor:023]: Update Interval: 86400.0s
[06:11:47][C][template.sensor:022]: Template Sensor 'Master Bedroom Temperature Sensor Number'
[06:11:47][C][template.sensor:022]: State Class: ''
[06:11:47][C][template.sensor:022]: Unit of Measurement: ''
[06:11:47][C][template.sensor:022]: Accuracy Decimals: 1
[06:11:47][C][template.sensor:023]: Update Interval: 86400.0s
[06:11:47][C][uptime.sensor:031]: Uptime Sensor 'Master Bedroom ESP32 Ethernet Uptime'
[06:11:47][C][uptime.sensor:031]: Device Class: 'duration'
[06:11:47][C][uptime.sensor:031]: State Class: 'total_increasing'
[06:11:47][C][uptime.sensor:031]: Unit of Measurement: 's'
[06:11:47][C][uptime.sensor:031]: Accuracy Decimals: 0
[06:11:47][C][uptime.sensor:031]: Icon: 'mdi:timer-outline'
[06:11:47][C][template.sensor:022]: Template Sensor 'Master Bedroom ESP32 Free Memory'
[06:11:47][C][template.sensor:022]: State Class: 'measurement'
[06:11:47][C][template.sensor:022]: Unit of Measurement: 'B'
[06:11:47][C][template.sensor:022]: Accuracy Decimals: 1
[06:11:47][C][template.sensor:023]: Update Interval: 60.0s
[06:11:47][C][bluetooth_proxy:088]: Bluetooth Proxy:
[06:11:47][C][bluetooth_proxy:089]: Active: YES
[06:11:47][C][restart:068]: Restart Switch 'Master Bedroom ESP32 Restart'
[06:11:47][C][restart:070]: Icon: 'mdi:restart'
[06:11:47][C][restart:091]: Restore Mode: always OFF
[06:11:47][C][xiaomi_lywsdcgq:012]: Xiaomi LYWSDCGQ
[06:11:47][C][xiaomi_lywsdcgq:013]: Temperature 'Master Bathroom Temperature'
[06:11:47][C][xiaomi_lywsdcgq:013]: Device Class: 'temperature'
[06:11:47][C][xiaomi_lywsdcgq:013]: State Class: 'measurement'
[06:11:47][C][xiaomi_lywsdcgq:013]: Unit of Measurement: '°C'
[06:11:47][C][xiaomi_lywsdcgq:013]: Accuracy Decimals: 1
[06:11:47][C][xiaomi_lywsdcgq:014]: Humidity 'Master Bathroom Humidity'
[06:11:47][C][xiaomi_lywsdcgq:014]: Device Class: 'humidity'
[06:11:47][C][xiaomi_lywsdcgq:014]: State Class: 'measurement'
[06:11:47][C][xiaomi_lywsdcgq:014]: Unit of Measurement: '%'
[06:11:47][C][xiaomi_lywsdcgq:014]: Accuracy Decimals: 1
[06:11:47][C][xiaomi_lywsdcgq:015]: Battery Level 'Master Bathroom Temperature Sensor Battery Level'
[06:11:47][C][xiaomi_lywsdcgq:015]: Device Class: 'battery'
[06:11:47][C][xiaomi_lywsdcgq:015]: State Class: 'measurement'
[06:11:47][C][xiaomi_lywsdcgq:015]: Unit of Measurement: '%'
[06:11:47][C][xiaomi_lywsdcgq:015]: Accuracy Decimals: 0
[06:11:47][C][xiaomi_lywsdcgq:012]: Xiaomi LYWSDCGQ
[06:11:47][C][xiaomi_lywsdcgq:013]: Temperature 'Master Bedroom Temperature'
[06:11:47][C][xiaomi_lywsdcgq:013]: Device Class: 'temperature'
[06:11:47][C][xiaomi_lywsdcgq:013]: State Class: 'measurement'
[06:11:47][C][xiaomi_lywsdcgq:013]: Unit of Measurement: '°C'
[06:11:47][C][xiaomi_lywsdcgq:013]: Accuracy Decimals: 1
[06:11:47][C][xiaomi_lywsdcgq:014]: Humidity 'Master Bedroom Humidity'
[06:11:47][C][xiaomi_lywsdcgq:014]: Device Class: 'humidity'
[06:11:47][C][xiaomi_lywsdcgq:014]: State Class: 'measurement'
[06:11:47][C][xiaomi_lywsdcgq:014]: Unit of Measurement: '%'
[06:11:47][C][xiaomi_lywsdcgq:014]: Accuracy Decimals: 1
[06:11:47][C][xiaomi_lywsdcgq:015]: Battery Level 'Master Bedroom Temperature Sensor Battery Level'
[06:11:47][C][xiaomi_lywsdcgq:015]: Device Class: 'battery'
[06:11:47][C][xiaomi_lywsdcgq:015]: State Class: 'measurement'
[06:11:47][C][xiaomi_lywsdcgq:015]: Unit of Measurement: '%'
[06:11:47][C][xiaomi_lywsdcgq:015]: Accuracy Decimals: 0
[06:11:47][C][esp32_ble:238]: ESP32 BLE:
[06:11:47][C][esp32_ble:240]: MAC address: 84:CC:A8:5D:13:62
[06:11:47][C][esp32_ble:241]: IO Capability: none
[06:11:47][C][esp32_ble_tracker:590]: BLE Tracker:
[06:11:47][C][esp32_ble_tracker:591]: Scan Duration: 300 s
[06:11:47][C][esp32_ble_tracker:592]: Scan Interval: 320.0 ms
[06:11:47][C][esp32_ble_tracker:593]: Scan Window: 30.0 ms
[06:11:47][C][esp32_ble_tracker:594]: Scan Type: ACTIVE
[06:11:47][C][esp32_ble_tracker:595]: Continuous Scanning: True
[06:11:47][C][mdns:108]: mDNS:
[06:11:47][C][mdns:109]: Hostname: master_closet_esp32
[06:11:47][C][ota:093]: Over-The-Air Updates:
[06:11:47][C][ota:094]: Address: master_closet_esp32.local:3232
[06:11:47][C][api:138]: API Server:
[06:11:47][C][api:139]: Address: master_closet_esp32.local:6053
[06:11:47][C][api:143]: Using noise encryption: NO
[06:12:07][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75108.00000 B with 1 decimals of accuracy
[06:12:08][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 72172.25000 s with 0 decimals of accuracy
[06:12:38][D][switch:012]: 'Master Bedroom ESP32 Restart' Turning ON.
[06:12:38][D][switch:055]: 'Master Bedroom ESP32 Restart': Sending state OFF
[06:12:38][I][restart:016]: Restarting device...
[06:12:38][I][app:134]: Rebooting safely...
INFO Processing expected disconnect from ESPHome API for master_closet_esp32.local
WARNING Disconnected from API
INFO Successfully connected to master_closet_esp32.local
[06:12:46][C][esp32_ble_tracker:590]: BLE Tracker:
[06:12:46][C][esp32_ble_tracker:591]: Scan Duration: 300 s
[06:12:46][C][esp32_ble_tracker:592]: Scan Interval: 320.0 ms
[06:12:46][C][esp32_ble_tracker:593]: Scan Window: 30.0 ms
[06:12:46][C][esp32_ble_tracker:594]: Scan Type: ACTIVE
[06:12:46][C][esp32_ble_tracker:595]: Continuous Scanning: True
[06:12:46][C][mdns:108]: mDNS:
[06:12:46][C][mdns:109]: Hostname: master_closet_esp32
[06:12:46][C][ota:093]: Over-The-Air Updates:
[06:12:46][C][ota:094]: Address: master_closet_esp32.local:3232
[06:12:46][C][api:138]: API Server:
[06:12:46][C][api:139]: Address: master_closet_esp32.local:6053
[06:12:46][C][api:143]: Using noise encryption: NO
[06:12:47][D][xiaomi_ble:328]: Got Xiaomi LYWSDCGQ (58:2D:34:3A:C4:B9):
[06:12:47][D][xiaomi_ble:331]: Temperature: 23.0°C
[06:12:47][D][xiaomi_ble:334]: Humidity: 80.0%
[06:12:47][D][sensor:094]: 'Master Bathroom Temperature': Sending state 23.00000 °C with 1 decimals of accuracy
[06:12:47][D][sensor:094]: 'Master Bathroom Humidity': Sending state 80.00000 % with 1 decimals of accuracy
[06:12:49][D][api:102]: Accepted 192.168.1.134
[06:12:49][D][api.connection:1030]: Home Assistant 2023.7.0b2 (192.168.1.134): Connected successfully
[06:13:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75484.00000 B with 1 decimals of accuracy
[06:13:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 55.94300 s with 0 decimals of accuracy
[06:14:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75340.00000 B with 1 decimals of accuracy
[06:14:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 115.94000 s with 0 decimals of accuracy
[06:15:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75500.00000 B with 1 decimals of accuracy
[06:15:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 175.94701 s with 0 decimals of accuracy
[06:16:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75500.00000 B with 1 decimals of accuracy
[06:16:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 235.94701 s with 0 decimals of accuracy
[06:17:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75368.00000 B with 1 decimals of accuracy
[06:17:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 295.94601 s with 0 decimals of accuracy
[06:17:40][I][ota:113]: Boot seems successful, resetting boot loop counter.
[06:17:40][D][esp32.preferences:114]: Saving 1 preferences to flash...
[06:17:40][D][esp32.preferences:143]: Saving 1 preferences to flash: 0 cached, 1 written, 0 failed
[06:17:40][D][esp32_ble_tracker:245]: Starting scan...
[06:18:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:18:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 355.94000 s with 0 decimals of accuracy
[06:19:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:19:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 415.94000 s with 0 decimals of accuracy
[06:20:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:20:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 475.94000 s with 0 decimals of accuracy
[06:21:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:21:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 535.94000 s with 0 decimals of accuracy
[06:22:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:22:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 595.94299 s with 0 decimals of accuracy
[06:22:40][D][esp32_ble_tracker:245]: Starting scan...
[06:23:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:23:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 655.94000 s with 0 decimals of accuracy
[06:24:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:24:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 715.94397 s with 0 decimals of accuracy
[06:25:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:25:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 775.94000 s with 0 decimals of accuracy
[06:26:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:26:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 835.94202 s with 0 decimals of accuracy
[06:27:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:27:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 895.94000 s with 0 decimals of accuracy
[06:27:40][D][esp32_ble_tracker:245]: Starting scan...
[06:28:15][D][sensor:094]: 'Master Bedroom ESP32 Free Memory': Sending state 75424.00000 B with 1 decimals of accuracy
[06:28:36][D][sensor:094]: 'Master Bedroom ESP32 Ethernet Uptime': Sending state 955.94000 s with 0 decimals of accuracy
```
```
### Additional information
_No response_
Seems that for now you can’t have both bluetooth_proxy
and esp32_ble_tracker
on the same device. At least removing the proxy setting from my device solved it for the Miscale.
1 Like
Cadster
(Cadster)
July 6, 2023, 6:58pm
109
Thanks, will check if it also solves my issue. I didn’t read anyting in the breaking changes though.
It is rather a bug, not a breaking change
Bergtatt
(Anders Kvernberg)
July 6, 2023, 7:47pm
111
Great update!
Still unable to mount my SMB v.1.0 network share. Anyone else made it work?
Smb 1 ??? I think it’s time you update your storage :+)
6 Likes