diff --git a/homeassistant/components/keymitt_ble/manifest.json b/homeassistant/components/keymitt_ble/manifest.json index 445a2581bda..2a21074bb12 100644 --- a/homeassistant/components/keymitt_ble/manifest.json +++ b/homeassistant/components/keymitt_ble/manifest.json @@ -5,17 +5,14 @@ "config_flow": true, "bluetooth": [ { - "service_uuid": "00001831-0000-1000-8000-00805f9b34fb" - }, - { - "service_data_uuid": "00001831-0000-1000-8000-00805f9b34fb" + "service_uuid": "0000abcd-0000-1000-8000-00805f9b34fb" }, { "local_name": "mib*" } ], "codeowners": ["@spycle"], - "requirements": ["PyMicroBot==0.0.6"], + "requirements": ["PyMicroBot==0.0.8"], "iot_class": "assumed_state", "dependencies": ["bluetooth"], "loggers": ["keymitt_ble"] diff --git a/homeassistant/generated/bluetooth.py b/homeassistant/generated/bluetooth.py index 43481ee48f1..b24d9e1986e 100644 --- a/homeassistant/generated/bluetooth.py +++ b/homeassistant/generated/bluetooth.py @@ -177,11 +177,7 @@ BLUETOOTH: list[dict[str, bool | str | int | list[int]]] = [ }, { "domain": "keymitt_ble", - "service_uuid": "00001831-0000-1000-8000-00805f9b34fb", - }, - { - "domain": "keymitt_ble", - "service_data_uuid": "00001831-0000-1000-8000-00805f9b34fb", + "service_uuid": "0000abcd-0000-1000-8000-00805f9b34fb", }, { "domain": "keymitt_ble", diff --git a/requirements_all.txt b/requirements_all.txt index 6d524e0b88e..654325b19a3 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -23,7 +23,7 @@ PyFlick==0.0.2 PyMVGLive==1.1.4 # homeassistant.components.keymitt_ble -PyMicroBot==0.0.6 +PyMicroBot==0.0.8 # homeassistant.components.mobile_app # homeassistant.components.owntracks diff --git a/requirements_test_all.txt b/requirements_test_all.txt index d3c095951e6..f8c89e64d63 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -19,7 +19,7 @@ HAP-python==4.5.0 PyFlick==0.0.2 # homeassistant.components.keymitt_ble -PyMicroBot==0.0.6 +PyMicroBot==0.0.8 # homeassistant.components.mobile_app # homeassistant.components.owntracks diff --git a/tests/components/keymitt_ble/__init__.py b/tests/components/keymitt_ble/__init__.py index 0b145970643..7ae4c20c406 100644 --- a/tests/components/keymitt_ble/__init__.py +++ b/tests/components/keymitt_ble/__init__.py @@ -32,7 +32,7 @@ def patch_async_setup_entry(return_value=True): SERVICE_INFO = BluetoothServiceInfoBleak( name="mibp", - service_uuids=["00001831-0000-1000-8000-00805f9b34fb"], + service_uuids=["0000abcd-0000-1000-8000-00805f9b34fb"], address="aa:bb:cc:dd:ee:ff", manufacturer_data={}, service_data={}, @@ -41,7 +41,7 @@ SERVICE_INFO = BluetoothServiceInfoBleak( advertisement=AdvertisementData( local_name="mibp", manufacturer_data={}, - service_uuids=["00001831-0000-1000-8000-00805f9b34fb"], + service_uuids=["0000abcd-0000-1000-8000-00805f9b34fb"], ), device=BLEDevice("aa:bb:cc:dd:ee:ff", "mibp"), time=0,