Search found 2 matches

by mato157
Mon Apr 01, 2019 6:32 pm
Forum: ESP-IDF
Topic: Correct setting of ESP-Now
Replies: 1
Views: 4995

Correct setting of ESP-Now

In my project I use protocol ESP-Now as a way of communication between ESP32 boards. I have some questions about setting ESP-Now. The first ESP board only reads the data from sensors and sends it through ESP-Now. The second board receives ESP-Now data but in the same time is also connected to Wi-Fi ...
by mato157
Fri Nov 09, 2018 10:31 am
Forum: ESP-IDF
Topic: Trouble with pin output after analog read
Replies: 0
Views: 1999

Trouble with pin output after analog read

Hello, I am working on a program where I need first read analog value from pin then change pin direction and set logic 1 on the same pin. Here is my test code: #define XL 32 void app_main() { uint16_t tempx; gpio_pad_select_gpio(XL); adc1_config_width(ADC_WIDTH_10Bit); while(1) { printf("XL set as a...