Configuring M5Stack ENV-III pressure sensor

I just added my first Voice PE with a M5Stack ENV-III temperature, humidity, pressure sensor. The temperature and humidity sensors were added fine but I have something wrong with the pressure sensor in my yaml file. I couldn’t find an example of what to add for this sensor so used the AI suggestion. Hopefully one of you will be able to tell me the correct configuration.

packages:
  Nabu Casa.Home Assistant Voice PE: github://esphome/home-assistant-voice-pe/home-assistant-voice.yaml
  grove-i2c: github://esphome/home-assistant-voice-pe/modules/grove-i2c.yaml
sensor: 
  - platform: sht3xd
    i2c_id: grove_i2c
    temperature:
      name: Living room temperature
    humidity:
      name: Living room humidity
  - platform: qmp6988
    i2c_id: grove_i2c
    address: 0x76
    pressure:
      name: Living room pressure  

Spec sheet page 18 say i2c address = 0xd1
This can confirm by looking in log but you may need to set i2c or all log to verbose (i forget)

Thanks so much for pointing me to the ESPHome documentation for the QMP6988. This is my first time using ESPHome so I didn’t even know it existed. I had the wrong address. I had 0x76 but it should be 0x70. Now it works like a charm!