29#include "../lib/part.h"
31#define PART_TEMPSYS_Name "Temperature System"
35 std::string
GetAboutInfo(
void)
override {
return "L.C. Gamboa \n <lcgamboa@yahoo.com>"; };
36 cpart_tempsys(
const unsigned x,
const unsigned y,
const char* name,
const char* type,
board* pboard_,
39 void DrawOutput(
const unsigned int index)
override;
45 unsigned short GetInputId(
char* name)
override;
50 unsigned char input_pins[4];
Board class.
Definition board.h:111
Definition other_TempSys.h:33
unsigned short GetOutputId(char *name) override
return the output ids numbers of names used in output map
Definition other_TempSys.cc:239
std::string WritePreferences(void) override
Called to save part preferences in configuration file.
Definition other_TempSys.cc:263
void DrawOutput(const unsigned int index) override
Called to draw every output.
Definition other_TempSys.cc:98
void ConfigurePropertiesWindow(void) override
Called to configure the properties window.
Definition other_TempSys.cc:279
std::string GetAboutInfo(void) override
Return the about information of part.
Definition other_TempSys.h:35
void ReadPropertiesWindow(void) override
Called when properties window close.
Definition other_TempSys.cc:298
unsigned short GetInputId(char *name) override
return the input ids numbers of names used in input map
Definition other_TempSys.cc:234
void ReadPreferences(std::string value) override
Called whe configuration file load preferences.
Definition other_TempSys.cc:272
void Process(void) override
Called every CPU step.
Definition other_TempSys.cc:158
PART class.
Definition part.h:49