Added Initial interface implementations

This commit is contained in:
UPSquared
2018-05-31 17:21:00 +03:00
committed by Stefan Andritoiu
parent 9a959b578c
commit 551a86ee8c
102 changed files with 1072 additions and 183 deletions

View File

@ -207,6 +207,11 @@ MPL3115A2::getPressure(int bSampleData) {
return (float)m_iPressure / 100;
}
float
MPL3115A2::getPressure() {
return getPressure(true);
}
float
MPL3115A2::getTemperature(int bSampleData) {
int ret;