mirror of
https://github.com/eclipse/upm.git
synced 2025-07-03 10:21:19 +03:00
Added Initial interface implementations
This commit is contained in:

committed by
Stefan Andritoiu

parent
9a959b578c
commit
551a86ee8c
@ -125,6 +125,12 @@ HDC1000::getTemperature(int bSampleData)
|
||||
return (float)(m_temperature * 0.01);
|
||||
}
|
||||
|
||||
float
|
||||
HDC1000::getTemperature()
|
||||
{
|
||||
return getTemperature(false);
|
||||
}
|
||||
|
||||
float
|
||||
HDC1000::getHumidity(int bSampleData)
|
||||
{
|
||||
@ -133,3 +139,9 @@ HDC1000::getHumidity(int bSampleData)
|
||||
}
|
||||
return (float)(m_humidity * 0.01);
|
||||
}
|
||||
|
||||
float
|
||||
HDC1000::getHumidity()
|
||||
{
|
||||
return getHumidity(false);
|
||||
}
|
||||
|
Reference in New Issue
Block a user