Solved! The ESP WiFi uses one of the two ADC 'peripherals' to function. Relocating to the other side of the ESP and using
different pins eliminated the issue.
Search found 13 matches
- Sat Jul 27, 2024 3:41 am
- Forum: ESP32 Arduino
- Topic: How WiFi.begin statement could stop Emon Voltage Display? [SOLVED!]
- Replies: 1
- Views: 1089
- Sat Jul 27, 2024 2:31 am
- Forum: ESP32 Arduino
- Topic: How WiFi.begin statement could stop Emon Voltage Display? [SOLVED!]
- Replies: 1
- Views: 1089
How WiFi.begin statement could stop Emon Voltage Display? [SOLVED!]
Arduino IDE 2.3.2 When running the Emon Energy Monitor program available at GitHub on an ESP32-S microcontroller the voltage and current data is displayed on the Serial Monitor output. When I attempted to add the host/client code (WiFi.h) to allow me to access the data remotely through a browser req...
- Tue Jan 09, 2024 4:53 am
- Forum: ESP32 Arduino
- Topic: 3 brand new ESP WROOM-32s all have no WiFi connectivity.....
- Replies: 2
- Views: 8119
Re: 3 brand new ESP WROOM-32s all have no WiFi connectivity.....
You should use ESP32 dev module. WROVER is a different module which includes psram. Install the WiFI scan example, set your logging level to verbose. If the rssi levels seem very different from what you get on the other modules, that would indicate some manufacturing defect. Your response was very ...
- Sun Dec 24, 2023 10:34 pm
- Forum: ESP32 Arduino
- Topic: 3 brand new ESP WROOM-32s all have no WiFi connectivity.....
- Replies: 2
- Views: 8119
3 brand new ESP WROOM-32s all have no WiFi connectivity.....
Hello, I was wondering what available troubleshooting is available to determine why an ESP processor is not connecting to a local area network. I have used ESP WROOM-32s for a couple years and they normally work without any issues. But I just received 3 new ones that look identical to my existing un...
- Tue Aug 01, 2023 3:43 am
- Forum: ESP8266
- Topic: Micro USB ports are not the same from one 8266 to another.
- Replies: 0
- Views: 7620
Micro USB ports are not the same from one 8266 to another.
So I ordered one 8266 off the web at ebay and had no issues interfacing to it. I ordered another from a different vendor and the one that arrived looks identical except for the Micro USB C interface port. It is larger. Does anyone know the spec difference on these USB C micro/mini ports? I am going ...
- Fri Mar 18, 2022 1:02 am
- Forum: ESP32 Arduino
- Topic: [SOLVED] Arduino 1.8.19 compile error : ImportError: no module named serial [Raspberry Pi]
- Replies: 1
- Views: 2967
Re: [SOLVED] Arduino 1.8.19 compile error : ImportError: no module named serial [Raspberry Pi]
Solution:
Code: Select all
sudo apt install python-is-python3
- Sun Mar 13, 2022 12:58 am
- Forum: ESP32 Arduino
- Topic: [SOLVED] Arduino 1.8.19 compile error : ImportError: no module named serial [Raspberry Pi]
- Replies: 1
- Views: 2967
[SOLVED] Arduino 1.8.19 compile error : ImportError: no module named serial [Raspberry Pi]
Using a Raspberry Pi platform I am getting a "no module named serial" error on compile of ESP32 sketch under 1.8.19 Arduino IDE. The Espressif library is installed. Does anyone know what causes this error generation or how to correct it? I have installed python3. Traceback (most recent call last): F...
- Thu Feb 17, 2022 10:35 pm
- Forum: ESP32 Arduino
- Topic: Grove (Seeed Studio) temp sensor 101020015 compatibility issue
- Replies: 3
- Views: 2636
Re: Grove (Seeed Studio) temp sensor 101020015 compatibility issue
Ibernstone,lbernstone wrote: ↑Thu Feb 17, 2022 6:55 pmI'm actually surprised you aren't getting division by zero errors.
You need to set the pinMode in your setup (or at the top of your loop).Code: Select all
pinMode(39, INPUT);
I inadvertently failed to copy the void setup() into the original post. The pinMode is defined there.
- Thu Feb 17, 2022 10:34 pm
- Forum: ESP32 Arduino
- Topic: Grove (Seeed Studio) temp sensor 101020015 compatibility issue
- Replies: 3
- Views: 2636
- Thu Feb 17, 2022 2:26 am
- Forum: ESP32 Arduino
- Topic: Grove (Seeed Studio) temp sensor 101020015 compatibility issue
- Replies: 3
- Views: 2636
Grove (Seeed Studio) temp sensor 101020015 compatibility issue
Evidently the ADC module w/ the ESP32 does not properly extrapolate the conversion algorithm offered by Seeed. The analog value displayed is always: -273.15; the last parameter used in the 1st line of the algorithm. Is there a workaround for this issue? #include <math.h> #define ONBOARD_LED 2 const...