Search found 4 matches
- Tue Dec 22, 2020 9:04 am
- Forum: ESP32 Arduino
- Topic: Thermistor connecting to esp32 and coding through Arduino IDE
- Replies: 3
- Views: 10749
Re: Thermistor connecting to esp32 and coding through Arduino IDE
Hi, which termistor are you trying to use (NTC, PTC, etc). Deppending on the type, is necessary to change the value of the Resistor in your voltage divider, or even change the resistor position. Ex: VCC - Termistor - Resistor - GND... (And you take analog samples on the resistor instead the Termisto...
- Tue Dec 22, 2020 8:54 am
- Forum: ESP32 Arduino
- Topic: WiFi.softAP different behavior... Password not accepted.
- Replies: 4
- Views: 8103
Re: WiFi.softAP different behavior... Password not accepted.
Hello Colleagues, I managed to solve this problem. (Actually, I do not know the root cause, but I guess, the microcontroller needs some "time" in between the changing modes of the WiFi :idea: ). I added some delays and now works perfectly. :D WiFi.mode(WIFI_AP); //Set mode of the Wifi delay(250); //...
- Fri Dec 18, 2020 8:19 pm
- Forum: ESP32 Arduino
- Topic: WiFi.softAP different behavior... Password not accepted.
- Replies: 4
- Views: 8103
Re: WiFi.softAP different behavior... Password not accepted.
Hi Felix, thank a lot for the reply. Yes, you are completelly right, the correct is "WIFI_AP". I corrected the post. (It was my mistake in copying and removing part of the code, I let the part when it goes to normal operation). I was checking the Datasheet as well, and looking for some "Signals" tha...
- Fri Dec 18, 2020 9:33 am
- Forum: ESP32 Arduino
- Topic: WiFi.softAP different behavior... Password not accepted.
- Replies: 4
- Views: 8103
WiFi.softAP different behavior... Password not accepted.
Hello guys, I am new here in the forum... (Not new, I always search here, but now I need kind of a help). I developed a product (IoT Device, with ESP-WROOM-32) and it is working fine ! The software in the ESP32 works very well. I use the Microsoft Azure platform to collect the data and connect my de...