10 lines
266 B
C++
10 lines
266 B
C++
#include "TemperatureSensor.h"
|
|
|
|
TemperatureSensor::TemperatureSensor() {
|
|
this->type = (unsigned char)Type::TemperatureSensor;
|
|
}
|
|
|
|
float TemperatureSensor::InCelsius() { return this->temperature; }
|
|
|
|
void *TemperatureSensor::GetValue() { return &this->temperature; }
|