change energy length
This commit is contained in:
parent
7a67732daf
commit
8378338ed8
|
@ -60,12 +60,12 @@ float CurrentTransformer::getCurrent()
|
||||||
return this->current;
|
return this->current;
|
||||||
}
|
}
|
||||||
|
|
||||||
long double CurrentTransformer::getEnergy()
|
double CurrentTransformer::getEnergy()
|
||||||
{
|
{
|
||||||
return this->energy;
|
return this->energy;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint8_t CurrentTransformer::registerCallback(std::function<void(float, long double)> callback) {
|
uint8_t CurrentTransformer::registerCallback(std::function<void(float, double)> callback) {
|
||||||
this->callbacks[this->handler_count] = callback;
|
this->callbacks[this->handler_count] = callback;
|
||||||
return this->handler_count++;
|
return this->handler_count++;
|
||||||
}
|
}
|
||||||
|
@ -74,10 +74,10 @@ void CurrentTransformer::unregisterCallback(uint8_t handler) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CurrentTransformer::saveEnergy(){
|
void CurrentTransformer::saveEnergy(){
|
||||||
this->fram->write(this->framAddress, (uint8_t*)&this->energy, 16);
|
this->fram->write(this->framAddress, (uint8_t*)&this->energy, sizeof(this->energy));
|
||||||
}
|
}
|
||||||
void CurrentTransformer::loadEnergy(){
|
void CurrentTransformer::loadEnergy(){
|
||||||
this->fram->read(this->framAddress, (uint8_t*)&this->energy, 16);
|
this->fram->read(this->framAddress, (uint8_t*)&this->energy, sizeof(this->energy));
|
||||||
}
|
}
|
||||||
|
|
||||||
void CurrentTransformer::setEnergyAutoSave(bool autoSave){
|
void CurrentTransformer::setEnergyAutoSave(bool autoSave){
|
||||||
|
|
|
@ -25,7 +25,7 @@ class CurrentTransformer
|
||||||
void loadEnergy();
|
void loadEnergy();
|
||||||
void setEnergyAutoSave(bool autoSave);
|
void setEnergyAutoSave(bool autoSave);
|
||||||
float getVoltage();
|
float getVoltage();
|
||||||
uint8_t registerCallback(std::function<void(float, long double)> callback);
|
uint8_t registerCallback(std::function<void(float, double)> callback);
|
||||||
void unregisterCallback(uint8_t handler);
|
void unregisterCallback(uint8_t handler);
|
||||||
private:
|
private:
|
||||||
AnalogCard* analogCard;
|
AnalogCard* analogCard;
|
||||||
|
@ -35,12 +35,12 @@ class CurrentTransformer
|
||||||
uint32_t conversionInterval;
|
uint32_t conversionInterval;
|
||||||
bool autoSave;
|
bool autoSave;
|
||||||
float calibration;
|
float calibration;
|
||||||
long double energy;
|
double energy;
|
||||||
float current;
|
float current;
|
||||||
float *voltage;
|
float *voltage;
|
||||||
uint32_t lastConversionTime;
|
uint32_t lastConversionTime;
|
||||||
std::function<float(uint16_t)> adcToCurrent; // std::function that convert adc value to current in amps
|
std::function<float(uint16_t)> adcToCurrent; // std::function that convert adc value to current in amps
|
||||||
uint8_t handler_count = 0;
|
uint8_t handler_count = 0;
|
||||||
std::map<uint8_t,std::function<void(float, long double)>> callbacks;
|
std::map<uint8_t,std::function<void(float, double)>> callbacks;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue