Files
OpenBK7231T_App/src/sim/Controller_BL0942.h
2024-11-01 14:25:38 +01:00

47 lines
1.2 KiB
C++

#ifndef __CONTROLLER_BL0942_H__
#define __CONTROLLER_BL0942_H__
#include "sim_local.h"
#include "Controller_Base.h"
#include "Coord.h"
class CControllerBL0942 : public CControllerBase {
class CJunction *rx, *tx;
class CText *txt_voltage, *txt_current, *txt_power, *txt_freq;
void setShapesActive(bool b);
void setShapesFillColor(const CColor &c);
float realCurrent;
float realPower;
float realVoltage;
float realFreq;
public:
CControllerBL0942() {
rx = tx = 0;
txt_voltage = txt_current = txt_power = txt_freq = 0;
realCurrent = 0.25f;
realPower = 60.0f;
realVoltage = 220.0f;
realFreq = 60.0f;
}
CControllerBL0942(class CJunction *_rx, class CJunction *_tx, CText *_txt_voltage, CText *_txt_current, CText *_txt_power, CText *_txt_freq) {
rx = _rx;
tx = _tx;
txt_voltage = _txt_voltage;
txt_current = _txt_current;
txt_power = _txt_power;
txt_freq = _txt_freq;
realCurrent = 0.25f;
realPower = 60.0f;
realVoltage = 220.0f;
realFreq = 60.0f;
}
virtual void saveTo(struct cJSON *j_obj);
virtual void loadFrom(struct cJSON *j_obj);
virtual void onDrawn();
virtual class CControllerBase *cloneController(class CShape *origOwner, class CShape *newOwner);
};
#endif // __CONTROLLER_BL0942_H__