Search found 5 matches

by aleskramzar
Wed Nov 10, 2021 1:44 pm
Forum: General Discussion
Topic: An alternative to using WiFi.scanNetworks(); ?
Replies: 0
Views: 1584

An alternative to using WiFi.scanNetworks(); ?

Hello, I am making an application with the ESP32-C3-WROOM02 chip that checks for all available networks to connect to. Currently i am using the WiFi.scanNetworks() function from the WiFi arduino library and it works ok. However, when this function executes, it stopes the execution of the rest of the...
by aleskramzar
Mon Aug 09, 2021 7:19 am
Forum: ESP32 Arduino
Topic: read different analog values?
Replies: 2
Views: 4068

Re: read different analog values?

I have found a solution after much serching. Instead of analogRead(pin); you can use: adc1_get_raw((adc1_channel_t)ADC1_CHANNEL_xxx); with xxx being the pin with the wanted adc channel. This is for using ADC channel 1, if you want to use channel 2 (which isnt recomended since apperently it is used b...
by aleskramzar
Wed Aug 04, 2021 1:19 pm
Forum: ESP32 Arduino
Topic: read different analog values?
Replies: 2
Views: 4068

read different analog values?

Hello, I am currently programing an ESP32 C3 devboard which has multiple ADC channels and i would like to read data from 3 different sensors. The problem is that whenever i use analogRead() with any port it always only shows the measurment on GPIO1. My question is how do i switch the current used AD...
by aleskramzar
Thu Jul 15, 2021 9:35 am
Forum: ESP32 Arduino
Topic: Trouble programing esp32-C3-DevkitC-02 through external pins
Replies: 2
Views: 3460

Re: Trouble programing esp32-C3-DevkitC-02 through external pins

Yes that was exactly what was the problem, thank you!
by aleskramzar
Wed Jul 14, 2021 1:14 pm
Forum: ESP32 Arduino
Topic: Trouble programing esp32-C3-DevkitC-02 through external pins
Replies: 2
Views: 3460

Trouble programing esp32-C3-DevkitC-02 through external pins

Hello, I would like to request some help regarding the programing of the ESP32-C3 devkitC 02. I tried to program it through the integrated USB port using Arduino IDE with the folowing setings: Board library version: 2.00-alpha1 Board: "ESP32C3 DevModule" upload speed: 115200 PORT: COM8 It worked and...