Skip to content

Commit

Permalink
Merge pull request #469 from tyeth/add-LPS33HW
Browse files Browse the repository at this point in the history
Add definition LPS33HW
  • Loading branch information
brentru authored Aug 28, 2023
2 parents 7636a64 + 17e321b commit 7084552
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/i2c/WipperSnapper_I2C.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,8 @@ bool WipperSnapper_Component_I2C::initI2CDevice(
_lc->configureDriver(msgDeviceInitReq);
drivers.push_back(_lc);
WS_DEBUG_PRINTLN("LC709203F Sensor Initialized Successfully!");
} else if (strcmp("lps35hw", msgDeviceInitReq->i2c_device_name) == 0) {
} else if ((strcmp("lps33hw", msgDeviceInitReq->i2c_device_name) == 0) ||
(strcmp("lps35hw", msgDeviceInitReq->i2c_device_name)) == 0) {
_lps3xhw = new WipperSnapper_I2C_Driver_LPS3XHW(this->_i2c, i2cAddress);
if (!_lps3xhw->begin()) {
WS_DEBUG_PRINTLN("ERROR: Failed to initialize LPS3XHW Sensor!");
Expand Down

0 comments on commit 7084552

Please sign in to comment.