// before
void process_sensor_data(uint16_t raw_value)
{
    float voltage =
        convert_adc_to_voltage(raw_value);
    float temperature =
        convert_voltage_to_temperature(voltage);
    log_sensor_data_json(voltage, temperature);
}
