FroggySoft / AlarmClock

Alarmclock based upon a Arduino Uno with an 3.5 inch (320x480) TFT shield.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

No need to wait after Wire.requestFrom().

Koepel opened this issue · comments

In the file "Bmp180.cpp", in the function "readBytesBmp180()", there is waiting after the Wire.requestFrom. You may remove this: while(Wire.available() != length) ;.
Explanation: Common-mistakes#1