You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
382 B
18 lines
382 B
#ifndef POWERBOARDSTATUS_H
|
|
#define POWERBOARDSTATUS_H
|
|
|
|
#include "model/hardware/core/Temperature.h"
|
|
#include "model/hardware/core/Fan.h"
|
|
#include "model/hardware/core/Voltage.h"
|
|
|
|
class PowerBoardStatus
|
|
{
|
|
public:
|
|
PowerBoardStatus();
|
|
~PowerBoardStatus();
|
|
Voltage* Voltages[1];
|
|
Temperature* temperature;
|
|
Fan* fan;
|
|
};
|
|
|
|
#endif // POWERBOARDSTATUS_H
|
|
|