I bought a GY-21P Breakout (like this) with an BMP280 & Si7021 Sensor on it.
I connected it to my Arduino Uno with the 3.3 V supply, but I have a 5 V LCD connected as well.
If I run the I2C-Scanner I can see both sensors (0x40 & 0x76; & 0x3F for the LCD).
The Si7021 is just working fine the the SparkFun Si7021 library, but with the Adafruit BMP280 library I can't get any values but the message:
"Could not find a valid BMP280 sensor, check wiring!"
I too am not getting any response from address 0x76, as mentioned earlier the i2scanner reports addresses 0x40 and 0x76 Nothing at 0x77
The I2C address is defined by the SDO pin. If connected to GND, the address is 0x76, if connected to Vcc it's 0x77. Adafruit sets the default to match their own hardware. If you bought other hardware you might have to adapt that.
The above one is the GY-21P Breakout Board. It has no SDO line.
The OP may try the following codes (tested in my UNO of mine BME/BMP280 with VIN, GND, SCL, SDA pins) just to test the BME280 sensor alone (disconnect the I2CLCD panel). Note that there are many libraries and the sensor does not work for all libraries.
The above one is the GY-21P Breakout Board. It has no SDO line.
Sure but the chips has a pin with that name. My answer was an explanation why the Adafruit library uses an I2C address default that doesn't match the OP's board but is still correct.