14 lines
224 B
C
14 lines
224 B
C
#pragma once
|
|
|
|
struct SensorData {
|
|
float fridgeZone1 = 36.0;
|
|
float fridgeZone2 = 12.0;
|
|
float rearSeat = 78.0;
|
|
float outsideAir = 88.0;
|
|
};
|
|
|
|
extern SensorData sensors;
|
|
|
|
void initSensors();
|
|
void updateSensors();
|