Htu21d on raspberry pi

hello, i want to configure htu21d on raspberry pi second mcu

my config :

[mcu host]
serial: /tmp/klipper_host_mcu

[temperature_sensor enclosure_temp]
sensor_type: HTU21D
i2c_mcu: host
htu21d_resolution: TEMP14_HUM12

[gcode_macro QUERY_ENCLOSURE]
gcode:
    {% set sensor = printer["htu21d enclosure_temp"] %}
    {action_respond_info(
        "Temperature: %.2f C\n"
        "Humidity: %.2f%%" % (
            sensor.temperature,
            sensor.humidity))}

[adxl345]
cs_pin: host:None
# Raspberry pi host config

[resonance_tester]
accel_chip: adxl345
probe_points:
    0,0,20  # an example

i get error :

MCU ‘host’ error during config: Unable to open i2c device
Once the underlying issue is corrected, use the
“FIRMWARE_RESTART” command to reset the firmware, reload the
config, and restart the host software.
Error configuring printer

Just missed!
sensor_type: HTU21D
i2c_mcu: rpi
i2c_bus: i2c.1

i use fluidd does the temperature and humidity show up on the dashboard like mcu hotend tempertature and heatbed temperature?

This is how it works with a Raspberry Pico 2040
at GPIO 16 (SDA PIN 21) and GPIO 17 (SCL PIN 22)

So funktioniert es mit einem Raspberry Pico 2040
am GPIO 16 (SDA PIN 21) und GPIO 17 (SCL PIN 22)

[temperature_sensor Raumklima]
sensor_type: HTU21D
i2c_mcu: pico
i2c_bus: i2c0e
htu21d_resolution: TEMP14_HUM12

[gcode_macro QUERY_HTU21D]
gcode:
    {% set sensor = printer["htu21d Raumklima_temp"] %}
    {action_respond_info(
        "Temperature: %.2f C\n"
        "Humidity: %.2f%%" % (
            sensor.temperature,
            sensor.humidity))}```