/*
Simplified Embedded Rust: ESP Core Library Edition
Programming ADCs - Voltmeter Application Example
*/

#![no_std]
#![no_main]

use esp_backtrace as _;
use esp_hal::{
    analog::adc::{AdcConfig, Attenuation, ADC},
    clock::ClockControl,
    delay::Delay,
    gpio::IO,
    peripherals::Peripherals,
    prelude::*,
};
use esp_println::println;

#[entry]
fn main() -> ! {
    // Take Peripherals & Configure Clocks
    let peripherals = Peripherals::take();
    let system = peripherals.SYSTEM.split();

    let clocks = ClockControl::max(system.clock_control).freeze();
    let delay = Delay::new(&clocks);

    // Instantiate and Create Handle for IO
    let io = IO::new(peripherals.GPIO, peripherals.IO_MUX);

    // Configure Pin as Analog
    let analog_pin = io.pins.gpio0.into_analog();

    // Create handle for ADC configuration parameters
    let mut adc_config = AdcConfig::new();

    // Configure ADC channel
    let mut adc_pin = adc_config.enable_pin(analog_pin, Attenuation::Attenuation11dB);

    // Create ADC Driver
    let mut adc = ADC::new(peripherals.ADC1, adc_config);
    
    // This line is for Wokwi only so that the console output is formatted correctly
    esp_println::print!("\x1b[20h");

    loop {
        // Get ADC Reading
        let sample: u16 = adc.read_oneshot(&mut adc_pin).unwrap();

        // Convert to Voltage
        let voltage: u32 = sample as u32 * 3300 / 4095;

        // Print the temperature output
        println!("Raw Reading: {}, Voltage Reading: {}mV", sample, voltage);

        // Wait half a second before next sample
        delay.delay_millis(500_u32);
    }
}
Loading
esp32-c3-devkitm-1