// after
float convert_adc_to_voltage(uint16_t adc_value) {
    return (adc_value * 3.3f) / 4095.0f;
}

float convert_voltage_to_temperature(float voltage) {
    return (voltage - 0.5f) * 100.0f;
}
