Questions tagged [esp8266webserver]

18 questions
4
votes
1 answer

Arduino ESP8266WebServer hangs after a while but responds pings

I have an ESP8266 module that I use to be able to power on three computers if they are off. The ESP8266WebServer has what I needed to have a POST method rather than a simpler GET one since I am sending a password and I want that little extra…
Elder
  • 41
  • 3
2
votes
0 answers

CUT HERE FOR EXCEPTION DECODER --------------- Exception (0): esp8266

Why does my program end up with CUT HERE FOR EXCEPTION DECODER for esp8266? I am triying to integrate gps and accelerometers with a website. integrating gps is the hardest one since it always refuse to be connected. gps.location.isValid() and…
Marifin -
  • 29
  • 2
2
votes
1 answer

Node MCU Esp12-E does not support server accept function

I am trying to get a web server to run on the ESP12E on the Node MCU variant, and following the example from the esp8266 documentation page here. But the code does not compile, throwing the following error message: 'class WiFiServer' has no member…
2
votes
1 answer

How to get version of Arduino board remotely

I have multiple Arduino WeMos D1 boards, with a mix of versions bought months apart. One of these boards is working but I need to update it and I am not sure if it is R1 or R2 (the pinouts are different). I do not have physical access to it (it is…
Chiwda
  • 252
  • 1
  • 3
  • 11
1
vote
0 answers

ESP8266 + NodeMCU Motor Shield spinning motor only in one direction

I hooked my ESP8266 Wi-Fi module to an ESP-12E Motor Shield and connected it to an RC car. It works fine when connected to my laptop (Goes forward, backward, left, and right. Though the car doesn't seem to turn a lot because of low power). I…
1
vote
0 answers

Why won't IP mode change to 1 in ESP01 using the AT commands?

I was trying to send some data to a webpage using an Arduino Uno R3 connected to an ESP01. I simply uploaded the BareMinimum and started sending AT commands through the Serial Monitor. It worked fine for the first time, but now its IPMODE is stuck…
1
vote
0 answers

ESP8266 TIMEOUT: 428

this is the code I used: #include #include "WiFiEsp.h" // Emulate Serial1 on pins 6/7 if not present #ifndef HAVE_HWSERIAL1 #include "SoftwareSerial.h" SoftwareSerial Serial1(18, 19); // RX, TX #endif char ssid[] = "Vodafone-A61356555"; …
1
vote
0 answers

Accessing HTTPS server of ESP8266 through fetch

I have been messing around with this application for a while but seem to keep hitting roadblocks. I am trying to have a public HTTPS page make a fetch to a private ESP8266. As you can guess I ran into several infamous CORS issues and had to become…
1
vote
0 answers

ESP8266 ESPAsyncWebServer LittleFS crashes

I am trying to write a simple web page to be served from my ESP8266 based on this tutorial: https://www.mischianti.org/2020/10/26/web-server-with-esp8266-and-esp32-byte-array-gzipped-pages-and-spiffs-2/ However I got a warning saying: SPIFFS has…
1
vote
1 answer

esp8266 - server.handleClient() fails to call assigned function

I'm trying to get one esp to send integers to a second as a part of a simple remote control, but after multiple days I can't get it to work. The transmitter seems like it's connecting and sending properly as best I can tell, and the receiver is…
Eric Ardis
  • 13
  • 3
1
vote
0 answers

ESP8266: ESPASyncserver + client

I have project with an ESPAsyncWebServer with websockets working already. What I need to add is Client functionality to poll a site for a response. I looked at the ASyncTCP library and it has two different implementations that aren't well documented…
tstdenis
  • 31
  • 2
1
vote
3 answers

Servo motor and L298N motor driver don't work together with ESP32

I am using four servo motors for our robotic arm and one L298N motor driver for two motors for the base of the arm. When I individually tested the robotic arm and controlled four servo motors it worked perfectly fine, and when I tested the linear…
1
vote
0 answers

Can't transfer information from esp8266 to arduino

I have esp8266. Which I am trying to set up to be a self-contained access point and server (tcp). ESP8266 is connected to ports 2,3 of Arduino Uno. On Arduino, I want to process all information coming into esp8266. Here is my current connection…
0
votes
1 answer

A peristaltic pump with pH sensor and web based output project

Good day to you all, I am asking here to confirm that my project is feasible. I have low knowledge of Arduino and other components. Please help me in achieving this project. I already have the peristaltic pump and pH sensor working with Arduino uno.…
0
votes
1 answer

ERROR: return reinterpret_cast(pgm_read_ptr(p));

I need to update DHT sensor data to the webserver in JSON format using ESP8266. This is my code. #include #include #include #include #include const char* ssid =…
1
2