extern "C" { #include "hal/timer_types.h" #include "esp_log.h" } #include #include "currentsensor.hpp" //tag for logging static const char * TAG = "current-sensors"; //-------------------------- //------- getVoltage ------- //-------------------------- //local function to get average voltage from adc float getVoltage(adc1_channel_t adc, uint32_t samples){ //measure voltage int measure = 0; for (int j=0; j centerVoltage){ current = (voltage - centerVoltage) / (3.3 - centerVoltage) * ratedCurrent; }else { current = 0; } if (fabs(current) < snapToZeroThreshold) { ESP_LOGD(TAG, "current=%.3f < threshold=%.3f -> snap to 0", current, snapToZeroThreshold); current = 0; } // invert calculated current if necessary else if (isInverted) current = -current; ESP_LOGI(TAG, "read sensor adc=%d: voltage=%.3fV, centerVoltage=%.3fV => current=%.3fA", (int)adcChannel, voltage, centerVoltage, current); return current; } //=============================== //===== calibrateZeroAmpere ===== //=============================== void currentSensor::calibrateZeroAmpere(void){ //measure voltage float prev = centerVoltage; centerVoltage = getVoltage(adcChannel, 100); ESP_LOGW(TAG, "defined centerVoltage (0A) to %.3f (previous %.3f)", centerVoltage, prev); }