mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 20:54:32 +02:00
Merge branch 'bugfix/example_adc_pin' into 'master'
Changed adc GPIO pin 32, that is not jumped to header in ESP-WROVER-KIT, to 34 See merge request !1020
This commit is contained in:
@@ -1,17 +1,14 @@
|
|||||||
# Example: ADC1
|
# Example: ADC1
|
||||||
|
|
||||||
This test code shows how to configure ADC1 and how to use ADC1 get the voltage.
|
This test code shows how to configure ADC1 and read the voltage connected to GPIO pin.
|
||||||
|
|
||||||
|
|
||||||
####ADC1 functions:
|
### ADC1 functions:
|
||||||
|
|
||||||
* ADC1,CHANNEL_4:GPIO32, voltage range [0v,3.1v],the Data range [0,4095]
|
|
||||||
|
|
||||||
|
|
||||||
####Test:
|
|
||||||
* Please connect the test voltage to GPIO32
|
|
||||||
|
|
||||||
|
ADC1_CHANNEL_6: GPIO34, voltage range [0V..3.1V], the data range [0..4095]
|
||||||
|
|
||||||
|
|
||||||
|
### Test:
|
||||||
|
|
||||||
|
Please connect the test voltage to GPIO34
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
#include "driver/gpio.h"
|
#include "driver/gpio.h"
|
||||||
#include "driver/adc.h"
|
#include "driver/adc.h"
|
||||||
|
|
||||||
#define ADC1_TEST_CHANNEL (4)
|
#define ADC1_TEST_CHANNEL (ADC1_CHANNEL_6)
|
||||||
|
|
||||||
void adc1task(void* arg)
|
void adc1task(void* arg)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user