You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The firmware on ScanI2CTwoWire.cpp only supports the BMP-388 device in the BMP-3xx lineup
(See Line 230)
The BME-390 sensor is not at chip address 0x50, and is instead at 0x60.
This could be fixed by adding the following:
case 0x60: // BMP-390 should be 0x60
logFoundDevice("BMP-390", (uint8_t)addr.address);
type = BMP_3XX;
break;
On line 237.
The text was updated successfully, but these errors were encountered:
Platform
other
Description
The firmware on ScanI2CTwoWire.cpp only supports the BMP-388 device in the BMP-3xx lineup
(See Line 230)
The BME-390 sensor is not at chip address 0x50, and is instead at 0x60.
This could be fixed by adding the following:
On line 237.
The text was updated successfully, but these errors were encountered: