Skip to content

Commit

Permalink
Add definition LPS33HW
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Aug 16, 2023
1 parent e680d3a commit a1656a8
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 @@ -470,7 +470,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 a1656a8

Please sign in to comment.