I set up 4 Miflora sensors very easily thanks to the excellent new Bluetooth device setup in 2022.8. HA auto-discovered all of them as soon as I turned them on. I just followed the setup prompts, adding a plant section in configuration.yaml. They all work perfectly, and have 5 entities.
The 5th Miflora HA discovered though (Maple tree), didn’t seem to configure correctly. It only has 1 entity and no sensors. I just want to have HA rediscover it, so I can configure it again, the same way as the others.
How would I do that?
PS here’s the relevant part of my configuration.yaml:
# Miflora
- platform: miflora
mac: "XX:XX:XX:XX:XX:XX"
name: Citrus
force_update: true
median: 3
monitored_conditions:
- moisture
- light
- temperature
- conductivity
- battery
- platform: miflora
mac: "XX:XX:XX:XX:XX:XX"
name: Aloe
force_update: true
median: 3
monitored_conditions:
- moisture
- light
- temperature
- conductivity
- battery
- platform: miflora
mac: "XX:XX:XX:XX:XX:XX"
name: Spider
force_update: true
median: 3
monitored_conditions:
- moisture
- light
- temperature
- conductivity
- battery
- platform: miflora
mac: "XX:XX:XX:XX:XX:XX"
name: Maple
force_update: true
median: 3
monitored_conditions:
- moisture
- light
- temperature
- conductivity
- battery
plant:
Citrus Tree:
sensors:
moisture: sensor.citrus_tree_sensor_moisture_2
temperature: sensor.citrus_tree_sensor_temperature_3
conductivity: sensor.citrus_tree_sensor_conductivity_2
brightness: sensor.citrus_tree_sensor_illuminance_2
min_moisture: 15
max_moisture: 60
min_temperature: 5
max_temperature: 35
min_conductivity: 350
max_conductivity: 2000
min_brightness: 2500
max_brightness: 4500
Aloe:
sensors:
moisture: sensor.aloe_sensor_moisture_3
temperature: sensor.aloe_sensor_temperature_2
conductivity: sensor.aloe_sensor_conductivity_3
brightness: sensor.aloe_sensor_illuminance_3
min_moisture: 7
max_moisture: 58
min_temperature: 8
max_temperature: 35
min_conductivity: 388
max_conductivity: 1000
min_brightness: 3200
max_brightness: 6400
Spider Plant:
sensors:
moisture: sensor.spider_plant_sensor_moisture
temperature: sensor.spider_plant_sensor_temperature
conductivity: sensor.spider_plant_sensor_conductivity
brightness: sensor.spider_plant_sensor_illuminance
min_moisture: 15
max_moisture: 60
min_temperature: 10
max_temperature: 32
min_conductivity: 200
max_conductivity: 1300
min_brightness: 1600
max_brightness: 2700
Oak Tree:
sensors:
moisture: sensor.oak_tree_moisture
temperature: sensor.oak_tree_temperature
conductivity: sensor.oak_tree_conductivity
brightness: sensor.oak_tree_illuminance
min_moisture: 15
max_moisture: 60
min_temperature: 5
max_temperature: 32
min_conductivity: 350
max_conductivity: 2000
min_brightness: 3500
max_brightness: 30000
Maple Tree:
sensors:
moisture: sensor.maple_tree_sensor_moisture
temperature: sensor.maple_tree_sensor_temperature
conductivity: sensor.maple_tree_sensor_conductivity
brightness: sensor.maple_tree_sensor_illuminance
min_moisture: 15
max_moisture: 60
min_temperature: 5
max_temperature: 35
min_conductivity: 350
max_conductivity: 2000
min_brightness: 2500
max_brightness: 4500