Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add-BME688 #462

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/i2c/WipperSnapper_I2C.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ bool WipperSnapper_Component_I2C::initI2CDevice(
_bmp3xx->configureDriver(msgDeviceInitReq);
drivers.push_back(_bmp3xx);
WS_DEBUG_PRINTLN("BMP388 Initialized Successfully!");
} else if (strcmp("bme680", msgDeviceInitReq->i2c_device_name) == 0) {
} else if ((strcmp("bme680", msgDeviceInitReq->i2c_device_name) == 0) ||
(strcmp("bme688", msgDeviceInitReq->i2c_device_name) == 0)) {
_bme680 = new WipperSnapper_I2C_Driver_BME680(this->_i2c, i2cAddress);
if (!_bme680->begin()) {
WS_DEBUG_PRINTLN("ERROR: Failed to initialize BME680!");
Expand Down