// before
float calc_v(uint16_t v) {
    return (v * 3.3f) / 4095.0f;
}

float calc_t(float v) {
    return (v - 0.5f) * 100.0f;
}
