Remove mitemp_bt integration (#96869)
parent
4b2cbbe8c2
commit
727a72fbaa
homeassistant
components/mitemp_bt
generated
|
@ -712,7 +712,6 @@ omit =
|
|||
homeassistant/components/mill/sensor.py
|
||||
homeassistant/components/minecraft_server/__init__.py
|
||||
homeassistant/components/minio/minio_helper.py
|
||||
homeassistant/components/mitemp_bt/sensor.py
|
||||
homeassistant/components/mjpeg/camera.py
|
||||
homeassistant/components/mjpeg/util.py
|
||||
homeassistant/components/mochad/__init__.py
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
"""The mitemp_bt component."""
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"domain": "mitemp_bt",
|
||||
"name": "Xiaomi Mijia BLE Temperature and Humidity Sensor",
|
||||
"codeowners": [],
|
||||
"documentation": "https://www.home-assistant.io/integrations/mitemp_bt",
|
||||
"iot_class": "local_polling",
|
||||
"requirements": []
|
||||
}
|
|
@ -1,29 +0,0 @@
|
|||
"""Support for Xiaomi Mi Temp BLE environmental sensor."""
|
||||
from __future__ import annotations
|
||||
|
||||
from homeassistant.components.sensor import PLATFORM_SCHEMA_BASE
|
||||
from homeassistant.core import HomeAssistant
|
||||
from homeassistant.helpers.entity_platform import AddEntitiesCallback
|
||||
from homeassistant.helpers.issue_registry import IssueSeverity, async_create_issue
|
||||
from homeassistant.helpers.typing import ConfigType, DiscoveryInfoType
|
||||
|
||||
PLATFORM_SCHEMA = PLATFORM_SCHEMA_BASE
|
||||
|
||||
|
||||
async def async_setup_platform(
|
||||
hass: HomeAssistant,
|
||||
config: ConfigType,
|
||||
async_add_entities: AddEntitiesCallback,
|
||||
discovery_info: DiscoveryInfoType | None = None,
|
||||
) -> None:
|
||||
"""Set up the MiTempBt sensor."""
|
||||
async_create_issue(
|
||||
hass,
|
||||
"mitemp_bt",
|
||||
"replaced",
|
||||
breaks_in_ha_version="2022.8.0",
|
||||
is_fixable=False,
|
||||
severity=IssueSeverity.ERROR,
|
||||
translation_key="replaced",
|
||||
learn_more_url="https://www.home-assistant.io/integrations/xiaomi_ble/",
|
||||
)
|
|
@ -1,8 +0,0 @@
|
|||
{
|
||||
"issues": {
|
||||
"replaced": {
|
||||
"title": "The Xiaomi Mijia BLE Temperature and Humidity Sensor integration has been replaced",
|
||||
"description": "The Xiaomi Mijia BLE Temperature and Humidity Sensor integration stopped working in Home Assistant 2022.7 and was replaced by the Xiaomi BLE integration in the 2022.8 release.\n\nThere is no migration path possible, therefore, you have to add your Xiaomi Mijia BLE device using the new integration manually.\n\nYour existing Xiaomi Mijia BLE Temperature and Humidity Sensor YAML configuration is no longer used by Home Assistant. Remove the YAML configuration from your configuration.yaml file and restart Home Assistant to fix this issue."
|
||||
}
|
||||
}
|
||||
}
|
|
@ -3382,12 +3382,6 @@
|
|||
"config_flow": false,
|
||||
"iot_class": "cloud_push"
|
||||
},
|
||||
"mitemp_bt": {
|
||||
"name": "Xiaomi Mijia BLE Temperature and Humidity Sensor",
|
||||
"integration_type": "hub",
|
||||
"config_flow": false,
|
||||
"iot_class": "local_polling"
|
||||
},
|
||||
"mjpeg": {
|
||||
"name": "MJPEG IP Camera",
|
||||
"integration_type": "hub",
|
||||
|
|
Loading…
Reference in New Issue