Max recursion reached
Closed this issue · 2 comments
damianburrin commented
shaoziyang commented
It may cause by new micropython 1.0 recursion limit, I will do more test late.
You may modify bmp180.py as below momentarily.
class BMP180():
...
...
# Calculating absolute altitude
def getAltitude(self):
self.get()
return 44330*(1-(self.P()/101325)**(1/5.255))
damianburrin commented
Thank you