javieryanez / nodemcu-modules

Modules for nodeMcu (LUA intepreter for ESP8266)
76 stars 46 forks source link

bug in bmp180.lua #5

Open avaldebe opened 9 years ago

avaldebe commented 9 years ago

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)