Skip to content

[pull] dev from home-assistant:dev #232

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 30 commits into from
May 26, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d433366
Add issue trackers to requirements script exceptions (#145608)
epenet May 26, 2025
7f4cc99
Use sub-devices for Shelly multi-channel devices (#144100)
bieniu May 26, 2025
19ee888
Add more mac-addresses for Amazon Devices autodiscovery (#145598)
chemelli74 May 26, 2025
d975135
Improve Bluetooth binary_sensor for Amazon Devices (#145600)
chemelli74 May 26, 2025
301d308
Add payload ON and OFF options to MQTT switch subentry component (#14…
jbouwh May 26, 2025
561be22
Disable last cleaning sensor for gs3mp model in lamarzocco (#145576)
zweckj May 26, 2025
34d1152
Fix reference to "tilt command topic" in MQTT translation strings (#1…
jbouwh May 26, 2025
8f9f531
Bump aiolifx to 1.1.5 to improve the identification of LIFX Luna (#14…
Djelibeybi May 26, 2025
c1c74a6
Mark Shelly quality as silver (#145610)
bieniu May 26, 2025
2cf09ab
Fulfilled quality rules - gold and platinum tiers for Miele integrati…
astrandb May 26, 2025
25f3ab3
Add from_hex filter (#145229)
Petro31 May 26, 2025
cc504da
Improve type hints in XiaomiGatewayDevice derived entities (#145605)
epenet May 26, 2025
13a6c13
Allow base64_encode to support bytes and strings (#145227)
Petro31 May 26, 2025
87c3e2c
Download backup if restore fails in Z-Wave migration (#145434)
MindFreeze May 26, 2025
e22fbe5
Add Homee event platform (#145569)
Taraman17 May 26, 2025
970359c
Empty response returns empty list in Nord Pool (#145514)
gjohansson-ST May 26, 2025
2d2e0d0
Add init type hints to XiaomiCoordinatedMiioEntity derived entities (…
epenet May 26, 2025
c68ab71
Add init type hints to XiaomiMiioEntity derived entities (#145611)
epenet May 26, 2025
e95e9e1
bump starlink-grpc-core to 1.2.3 due to API change upstream (#145261)
sashahilton00 May 26, 2025
150110e
add/fix miele program ids mapping (#145577)
aturri May 26, 2025
ba0f6c3
Add translations to Unifi Protect (#145548)
jrieger May 26, 2025
1c1f5a7
Cleanup non-existing climate and humidifier devices for Comelit (#144…
chemelli74 May 26, 2025
c7745e0
Add support for SEARCH_MEDIA feature (#143261)
peteS-UK May 26, 2025
39906cf
Add state_class to metoffice sensors (#145496)
avee87 May 26, 2025
5202bbb
Update Weatherflow wind direction icons to use Ranged Icon Translatio…
jeeftor May 26, 2025
6ddc219
Add exception handler and exception translations to eheimdigital (#14…
autinerd May 26, 2025
5642d64
Add template to command args in command_line notify (#125170)
gjohansson-ST May 26, 2025
49cf662
Set quality scale to 🥇 gold for switchbot integration (#144608)
zerzhang May 26, 2025
2d5867c
Add switchbot air purifier support (#144552)
zerzhang May 26, 2025
d3275c3
Use shorthand attributes in xiaomi_miio (#145614)
epenet May 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Improve Bluetooth binary_sensor for Amazon Devices (home-assistant#14…
…5600)

Improve blueetooth binary_sensor for Amazon Devices
  • Loading branch information
chemelli74 authored May 26, 2025
commit d975135a7cd2acc2a2c1520559f4b3a796058598
1 change: 0 additions & 1 deletion homeassistant/components/amazon_devices/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ class AmazonBinarySensorEntityDescription(BinarySensorEntityDescription):
AmazonBinarySensorEntityDescription(
key="bluetooth",
translation_key="bluetooth",
device_class=BinarySensorDeviceClass.CONNECTIVITY,
is_on_fn=lambda _device: _device.bluetooth_state,
),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
'name': None,
'options': dict({
}),
'original_device_class': <BinarySensorDeviceClass.CONNECTIVITY: 'connectivity'>,
'original_device_class': None,
'original_icon': None,
'original_name': 'Bluetooth',
'platform': 'amazon_devices',
Expand All @@ -36,7 +36,6 @@
# name: test_all_entities[binary_sensor.echo_test_bluetooth-state]
StateSnapshot({
'attributes': ReadOnlyDict({
'device_class': 'connectivity',
'friendly_name': 'Echo Test Bluetooth',
}),
'context': <ANY>,
Expand Down