Search found 14 matches

by haddow777
Wed Feb 01, 2023 11:34 pm
Forum: ESP32 Arduino
Topic: ESP32 WiFiServer.available() not working like Arduino's version
Replies: 3
Views: 1789

Re: ESP32 WiFiServer.available() not working like Arduino's version

before you spend more time on this I suggest to use the ASYNC server: https://github.com/me-no-dev/ESPAsyncWebServer A bit steeper hurdle to start, but at some point you will need it anyway! Hello again. I just want you to know I looked into it and took up your suggestion. At first, I thought you w...
by haddow777
Mon Jan 30, 2023 11:37 pm
Forum: ESP32 Arduino
Topic: ESP-Prog suddenly not working after working for long time. Replaced, still not working.
Replies: 2
Views: 1236

Re: ESP-Prog suddenly not working after working for long time. Replaced, still not working.

Second update. Okay, I don't really know if this is abnormal behavior or not, but I thought I would mention this just so everyone has all the details. First a technical detail I failed to mention. I'm running the power from the ESP-Prog to the ESP32 using 5v. It's running through the 5V pin and this...
by haddow777
Mon Jan 30, 2023 10:53 pm
Forum: ESP32 Arduino
Topic: ESP-Prog suddenly not working after working for long time. Replaced, still not working.
Replies: 2
Views: 1236

Re: ESP-Prog suddenly not working after working for long time. Replaced, still not working.

Update. I wanted to be sure. I made completely new setup. An ESP-Prog attached to an ESP32 board directly using completely new fresh wires. The wires are female on both sides so I could attached them directly to each board without including a breadboard. I even replaced the USB cable. Same problem. ...
by haddow777
Mon Jan 30, 2023 11:13 am
Forum: ESP32 Arduino
Topic: ESP-Prog suddenly not working after working for long time. Replaced, still not working.
Replies: 2
Views: 1236

ESP-Prog suddenly not working after working for long time. Replaced, still not working.

Hello, I've been programming for weeks now with a NODEMCU ESP-32S V1 plugged in through the ESP-Prog's JTAG and Serial interfaces. I have it interfacing through PlatformIO on a mac. I have used it many times to upload firmware into the ESP32 and run it. Tonight, it suddenly stopped loading code up. ...
by haddow777
Sun Jan 29, 2023 7:36 pm
Forum: ESP32 Arduino
Topic: ESP32 WiFiServer.available() not working like Arduino's version
Replies: 3
Views: 1789

Re: ESP32 WiFiServer.available() not working like Arduino's version

Thank you for the suggestion. I had seen the library before. There's a couple of things though. First, I am trying to get by with the absolute minimum number of additional libraries. Also, I don't feel the HTTP overhead is necessary for my situation. My design is for basic continuous connections. Wh...
by haddow777
Sun Jan 29, 2023 8:11 am
Forum: ESP32 Arduino
Topic: ESP32 WiFiServer.available() not working like Arduino's version
Replies: 3
Views: 1789

ESP32 WiFiServer.available() not working like Arduino's version

Hello, I've been pounding my head against a wall lately trying to deal with multiple continuous TCP connections being handled from my ESP32 device. It is claimed that the ESP32 WiFi classes should act like Arduino's versions, but I have come to find that they don't in a way that has been causing me ...
by haddow777
Sun Jan 29, 2023 7:38 am
Forum: ESP32 Arduino
Topic: ESP32 wifi server with multiple clients
Replies: 3
Views: 4263

Re: ESP32 wifi server with multiple clients

I just ran into this problem myself. The problem seems to be that the ESP32 version of WiFiClient and WiFiServer differ from the Arduino version. Here's what it says about WiFiServer.available() : Gets a client that is connected to the server and has data available for reading. The connection persis...
by haddow777
Tue Aug 10, 2021 10:31 am
Forum: ESP32 Arduino
Topic: First analogRead pin always reads full power each loop iteration.
Replies: 1
Views: 2583

Re: First analogRead pin always reads full power each loop iteration.

Also, I should note that I am using a NodeMCU Esp32 dev board. I'm also using arduino-esp32 2.0.0-rc1 in PlatformIO. Also, I tested the code on two different Esp32's just to be sure it wasn't some sort of hardware issue.
by haddow777
Tue Aug 10, 2021 10:29 am
Forum: ESP32 Arduino
Topic: First analogRead pin always reads full power each loop iteration.
Replies: 1
Views: 2583

First analogRead pin always reads full power each loop iteration.

Hello. I have just run into a very weird problem. I have found a very poor solve for it, but I would rather not cheat a solve and understand why things are working the way they are. I am writing a program that includes reading the values from 7 thermistors. I am using a library called SmoothThermist...
by haddow777
Fri Aug 06, 2021 9:32 pm
Forum: ESP32 Arduino
Topic: How to use setMTU in BLE library.
Replies: 4
Views: 6214

Re: How to use setMTU in BLE library.

Thank you thank you thank you. I had managed in my own bludering trek through google to find the platform_packages line, but it failed to compile before. Now that you've shown me a site that lists the new temporary platform link to use, it's finally compiling in general and more specifically, also w...