Skip to content

Commit

Permalink
BME280 Lua module - (config[3] & 0xFC) | BME280_FORCED_MODE workaro…
Browse files Browse the repository at this point in the history
…und bug fix (#3325)
  • Loading branch information
vsky279 authored Nov 11, 2020
1 parent c4baa9f commit d279ba2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua_modules/bme280/bme280.lua
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,8 @@ function bme280_startreadout(self, callback, delay, alt)
delay = delay or BME280_SAMPLING_DELAY

if self._isbme then write_reg(self.id, self.addr, BME280_REGISTER_CONTROL_HUM, self._config[2]) end
write_reg(self.id, self.addr, BME280_REGISTER_CONTROL, math_floor(self._config[3]:byte(1)/4)+ 1)
-- math_floor(self._config[3]:byte(1)/4)+ 1
write_reg(self.id, self.addr, BME280_REGISTER_CONTROL, 4*math_floor(self._config[3]:byte(1)/4)+ 1)
-- 4*math_floor(self._config[3]:byte(1)/4)+ 1
-- an awful way to avoid bit operations but calculate (config[3] & 0xFC) | BME280_FORCED_MODE
-- Lua 5.3 integer division // would be more suitable

Expand Down

0 comments on commit d279ba2

Please sign in to comment.