I followed instructions according to seeed wiki page:
https://wiki.seeedstudio.com/ha_with_mr60bha2/
I was able to connect 2x mmWave sensor with XIAo ESP32-C6 into HA but some entitites are not showing? only illuminance and the light switch work.
I’m missing hear rate, respiratory rate, person information entitites?
Check if you’re using the correct ESPHome YAML provided in the wiki or updated from the official Seeed GitHub repo:
You should have flashed a YAML like:
uart:
rx_pin: GPIOX
tx_pin: GPIOY
baud_rate: 115200
sensor:
- platform: custom
lambda: |-
auto my_sensor = new MR60BHA2();
App.register_component(my_sensor);
return {my_sensor->heart_rate_sensor, my_sensor->respiratory_rate_sensor};
sensors:
- name: "Heart Rate"
- name: "Respiratory Rate"
I used the firmware from the wiki pages and followed the instructions from there. This procedure provided no YAML, I guess all is setup on the hardware?
I tried via ESPHome builder but got stuck as well, would you have a complete YAML example to share?