The objective for this lab is to understand how to use Espressif DAC driver. Digital to Analog Converter (DAC) is a peripheral that converts digital signals to analog signals. The ESP32 has DAC of 8-bit resolution ranging from 0-255 bit value or 0.0-3.3V. ESP32 has only two DAC channels: channel 1 (GPIO 25) and channel 2 (GPIO 26). Students must generate a triangle wave with channel 1 and sine wave with channel 2.
For this Lab, there is two additional functions from Espressif that are important to use DAC peripheral. As previously mentioned, ESP32 has 2 DAC channels. The channel is enable by using: dac_output_enable(dac_channel_t channel). dac_channel_t is an enumeration that is provided down below. Please select the correct channel based on the GPIO pin and hardware.
typedefenum {
DAC_CHANNEL_1 = 0,
DAC_CHANNEL_2 = 1,
DAC_CHANNEL_MAX,
} dac_channel_t;
Finally, the following function is use to produce a DAC output: dac_output_voltage(dac_channel_t channel, uint8_t dac_value). The DAC output value has a 8-bit resolution, please see the table provide in Objective section.