Hallo,
i have a problem with reading out my BME 280.
i2c_scanner means that my Sensor use 0x76. How can I change the Address?
#include <Wire.h>
#include <SPI.h>
#include <Adafruit_BMP280.h>
Adafruit_BMP280 bmp; // I2C
//Adafruit_BMP280 bmp(BMP_CS); // hardware SPI
//Adafruit_BMP280 bmp(BMP_CS, BMP_MOSI, BMP_MISO, BMP_SCK);
void setup() {
Serial.begin(9600);
Serial.println(F("BMP280 test"));
if (!bmp.begin()) {
Serial.println(F("Could not find a valid BMP280 sensor, check wiring!"));
while (1);
}
/* Default settings from datasheet. /
bmp.setSampling(Adafruit_BMP280::MODE_NORMAL, / Operating Mode. /
Adafruit_BMP280::SAMPLING_X2, / Temp. oversampling /
Adafruit_BMP280::SAMPLING_X16, / Pressure oversampling /
Adafruit_BMP280::FILTER_X16, / Filtering. /
Adafruit_BMP280::STANDBY_MS_500); / Standby time. */
}
void loop() {
Serial.print(F("Temperature = "));
Serial.print(bmp.readTemperature());
Serial.println(" *C");
Serial.print(F("Pressure = "));
Serial.print(bmp.readPressure());
Serial.println(" Pa");
Serial.print(F("Approx altitude = "));
Serial.print(bmp.readAltitude(1013.25)); /* Adjusted to local forecast! */
Serial.println(" m");
Serial.println();
delay(2000);
}
serial monitor:
2:46:45.678 ->
22:46:45.678 -> Soft WDT reset
22:46:45.721 ->
22:46:45.721 -> >>>stack>>>
22:46:45.721 ->
22:46:45.721 -> ctx: cont
22:46:45.721 -> sp: 3ffffdf0 end: 3fffffc0 offset: 01b0
22:46:45.758 -> 3fffffa0: feefeffe 00000000 3ffee4e0 40203044
22:46:45.829 -> 3fffffb0: feefeffe feefeffe 3ffe84ec 40100f41
22:46:45.869 -> <<<stack<<<
22:46:45.907 -> ⸮B⸮⸮⸮}⸮BMP280 test
22:46:45.978 -> Could not find a valid BMP280 sensor, check wiring!
Any Ideas
Hell
