10 lines
174 B
C++
10 lines
174 B
C++
#include "ComputerBoardState.h"
|
|
|
|
CComputerBoardState::CComputerBoardState()
|
|
{
|
|
mSystemTemperature = 0.0;
|
|
mCPUVcore = 0.0;
|
|
mSystem3V3 = 0.0;
|
|
mSystem5V = 0.0;
|
|
}
|