nodemcu-modules icon indicating copy to clipboard operation
nodemcu-modules copied to clipboard

bug in bmp180.lua

Open avaldebe opened this issue 10 years ago • 0 comments

line 108 says:

local UP = string.byte(dataP, 1) * 65536 + string.byte(dataP, 2) * 256 + string.byte(dataP, 1)

it shoud say:

local UP = string.byte(dataP, 1) * 65536 + string.byte(dataP, 2) * 256 + string.byte(dataP, 3)

avaldebe avatar Jul 13 '15 11:07 avaldebe