16 lines
276 B
C++
16 lines
276 B
C++
#include "TemperatureSensor.h"
|
|
|
|
TemperatureSensor::TemperatureSensor()
|
|
{
|
|
this->type = (unsigned int) SensorType::Temperature;
|
|
}
|
|
|
|
float TemperatureSensor::InCelsius()
|
|
{
|
|
return this->temperature;
|
|
}
|
|
|
|
void* TemperatureSensor::GetValue() {
|
|
return &this->temperature;
|
|
}
|