Skip to main content

Questions tagged [web-server]

A web-server is a system which delivers data such as web-pages to a client system.

Filter by
Sorted by
Tagged with
0 votes
1 answer
86 views

My use case is an ESP32-cam that serves two purposes: HTTP feed (accessed by a Raspberry Pi 5 which processes stream and provides a response) Servo Motor microcontroller: Receives response from ...
jmarywien's user avatar
1 vote
2 answers
209 views

I'm using Arduino IDE(2.3.5) ESP8266 (3.1.2) and ESPAsyncWebServer (3.7.4), ESPAsyncTCP(2.0.0). I need to wifi scan the network an print the result of my web interface. If I use WiFiScanNetworks(), ...
Seafox's user avatar
  • 11
1 vote
1 answer
300 views

I am working on a project where I have set up an Arduino UNO R4 Wi-Fi as a web server. However, I would like to secure the communication by using HTTPS instead of HTTP for accessing the Arduino web ...
Aashish Dhakal's user avatar
2 votes
1 answer
237 views

I have a ESP32 with a web server. In the page where I show the sensor readings and the state of the system, right now the readings are showing themselves well. The problem comes when I want to show ...
vram's user avatar
  • 31
1 vote
0 answers
82 views

So here is my code, Its the simple_server example from ESPAsyncWebServer.h and encryption example from PracticalCrypto.h combined. the webserver works fine and I can see the / page, but the moment I ...
T R Y's user avatar
  • 75
0 votes
1 answer
262 views

So, ESPAsyncWebServer library is using the Digest MD5 Authentication by default, and I want to use this feature in my webserver, but there is a problem, I don't like the ugly prompt box, and I don't ...
T R Y's user avatar
  • 75
-1 votes
1 answer
2k views

I was working on a project to use the ESP32CAM board to detect faces and open some sort of lock. The program can detect the face using the yellow box that shows up as you can see from the following ...
Wahaaj Nasir's user avatar
2 votes
1 answer
626 views

My friend and I are doing a project and we're stuck on a problem. We tried looking stuff up but it looks like no one documented something similar before. Basically, what we want to do is have one ...
loom's user avatar
  • 31
1 vote
1 answer
40 views

I'm trying to read the UID of MIFARE 13.5Mhz cards with MFRC522 lib and I have defined the following function for it. void getUID() { if (mfrc522.PICC_IsNewCardPresent() && mfrc522....
T R Y's user avatar
  • 75
0 votes
1 answer
223 views

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 ...
Johannes Remotigue's user avatar
0 votes
1 answer
207 views

I need to update DHT sensor data to the webserver in JSON format using ESP8266. This is my code. #include <ESP8266WiFi.h> #include <WiFiClient.h> #include <ESP8266WebServer.h> #...
Kuralmozhi's user avatar
1 vote
1 answer
5k views

I was wondering what product would work best for my application. I need a web server interface to control several digital outputs connected to my board, and it needs to be as polished as it can be. In ...
Francesco Antonio Miccoli's user avatar
1 vote
0 answers
61 views

I'm loading a buffer with different data recorded by sensors and sending them to a server. But I also wanted to log when the data was sent on the client side, so I formatted the time of my RTC clock ...
5TableLegs's user avatar
0 votes
1 answer
3k views

I read this issue. But I didn't understand it. Like the author I don't have an SSL certificate and I don't want to have one (because if I had one I could live with HTTPS!). I just want to process any ...
Mark's user avatar
  • 393
0 votes
0 answers
168 views

I have two ESP32s. One is acting as webserver and the other is acting as a client that will send a GET request to the server ESP32. Both of the ESP32s are connected to the same WiFi AP. For sending ...
Arslan's user avatar
  • 134
1 vote
1 answer
284 views

#include <Arduino.h> #include <WiFi.h> #include "WiFiManager.H" #include <HTTPClient.H> #include "ESPAsyncWebServer.h" #include <AsyncTCP.h> float version =...
jay's user avatar
  • 35
0 votes
2 answers
992 views

I'm trying to create a AsyncWebServer after enabling the SoftAP: #include <Arduino.h> #include <SPIFFS.h> #include <WiFi.h> #include <WiFiAP.h> #include <AsyncTCP.h> #...
Mark's user avatar
  • 393
1 vote
1 answer
1k views

I'm following the examples for ESP32: AsyncWebServer _server(80); _server.on("/", HTTP_GET, [](AsyncWebServerRequest *request) { request->send(SPIFFS, "/index.html", ...
Mark's user avatar
  • 393
-1 votes
1 answer
1k views

I want to communicate two (2) ESP32's via Json commands using ESPAsyncWeb.h. The master should have specific operations to execute and respond to the client, and the client should be able to send ...
Ed Zamper's user avatar
2 votes
1 answer
187 views

I am carrying out this project in which the Arduino acts as a web server and hosts a website in which I show the constantly updated temperature of a laboratory. The problem is running all this code in ...
Leo's user avatar
  • 23
1 vote
3 answers
12k views

I'm implementing an example in which 2 ESP32's communicate each other using the HTTP Protocol. One acts as Server the other as Client. In the examples provided, I am curious about the declaration on ...
Ed Zamper's user avatar
2 votes
0 answers
504 views

I'm using an ESP8266 to control a short strip of WS2812 LEDs. I also want some way of remote Control so I'm looking into using a Web UI with the ESPAsyncWebServer library. However using that Webserver ...
Christopher's user avatar
1 vote
0 answers
1k views

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-...
Alex Hope O'Connor's user avatar
-1 votes
1 answer
3k views

I am trying to figure out how to get requests (or whatever they are called) to display in the serial monitor, yet not change the HTML page bodies. The user selects their choices in the submenu (...
Adam's user avatar
  • 47
2 votes
1 answer
3k views

I made this minimal example in order to figure out how to get requests (or whatever they are called) to display in the serial monitor. However, none of the query parameters (in the URL) can be seen in ...
Adam's user avatar
  • 47
1 vote
1 answer
183 views

I currently have two Arduino Zero boards (using the SAMD21 microcontroller), each with an ATWINC1500 wifi module attached. I have established one of these units as a wifi access point with a server ...
David's user avatar
  • 129
2 votes
5 answers
3k views

I have a Teensy 4.1 with ethernet, but I have other networked MCUs like a D1 mini, various ESP8266s and Arduino ethernet shields. My question is: how I can make better looking web pages on these ...
j0h's user avatar
  • 902
2 votes
0 answers
562 views

Im working with node mcu ESP 8266 and trying to make it a webserver but keep encountering this problem. #include<ESP8266WiFi.h> WiFiClient client; WiFiServer server(80); void ...
Stars and planet's user avatar
3 votes
1 answer
8k views

I've often encountered WiFi networks that require you to sign in through a web page that automatically opens after connecting to the access point, such as hotels. I'd like to implement something ...
Fromen's user avatar
  • 71
1 vote
1 answer
490 views

I think the issue is within the library because I have try to implement this code according to the tutorial that I found in YouTube Youtube. The discussion of this tutorial is the first they implement ...
Ly Bunvath's user avatar
3 votes
0 answers
2k views

I am trying to reach the webserver running in my Wemos D1 Mini compatible board. I am trying one esp8266 example using Arduino examples "WifiManualServer" code below. I have replaced the SSI ...
Joshua Francis's user avatar
1 vote
0 answers
214 views

I'm new to NodeMCU and ESP. I've created a basic web server on my NodeMCU. The server works fine for the first few minutes after resetting the board or re-uploading code. But after about half an hour, ...
Muhammed Gül's user avatar
1 vote
0 answers
97 views

I have an SD card have a very big file (1M character). i try to load it into memory in terms of 4K character array ( The maximum I could do using Arduino Mega). but this take almost 250 call to the ...
Antoun's user avatar
  • 11
1 vote
0 answers
300 views

I am working on a project where the ESP 8266 sends a very long string about 3000 chas over http as client. Likewise sensor data are determined. The loop repeats itself every 250ms. Now I noticed that ...
TrompetenTom's user avatar
1 vote
1 answer
371 views

I've mounted an Ethernet Shield on top of an Arduino UNO. The Arduino is connected via usb to my pc and to the network via ethernet through a switch. I'm running a simplified verison of the WebServer ...
Hexash's user avatar
  • 11
2 votes
0 answers
540 views

I want to control my ESP8266 device from my secure website via 2 different ways: if ESP8266 is connected to internet, commands between website and device will sent over MQTT which as working ...
ASH's user avatar
  • 55
2 votes
1 answer
4k views

I have the following code designed to allow me to control my device from my website using mqtt broker while internet is available. I also built in a local webserver to control the device in case of ...
ASH's user avatar
  • 55
3 votes
1 answer
681 views

I want my ESP8266-based device to create an accesspoint that allows the user to input their home ssid and password. There is a device object that holds most of the data defined elsewhere. I'm trying ...
LearnDude's user avatar
2 votes
1 answer
1k views

I have a function for HTTP_POST responses but it is never called when I post to it. I get the webpage instead. I call on it with server.on("/",HTTP_POST,response); But I only get the url in ...
brad's user avatar
  • 201
0 votes
1 answer
1k views

I need to provide a basic geolocation service for my clients. I built a location service based on the phone geolocation. It works great, not a problem. My problem is that some of my clients don't have ...
rm4's user avatar
  • 103
0 votes
1 answer
1k views

I'm trying to do an async webserver with access point using an ESP32. It's a little bit of a mix between This tutorial for AP and async and this tutorial since it's also with an async webserver and it ...
Xenoshell's user avatar
1 vote
0 answers
61 views

I am trying to toggle on/off between two separate HTTP request. One submit button to turn it on, and another separate submit button to turn it off. I expect the device to launch in the off/low 0V ...
brad's user avatar
  • 201
0 votes
0 answers
369 views

I'm trying to make a RC car (with a surveillance camera if possible, using the web-cam code that comes with the ESP library) using a ESP-32 CAM as a wifi module to control the car using my computer. ...
Krit Khad's user avatar
-1 votes
1 answer
179 views

I would like to use my ESP32D to create a wireless access point and host an HTML page that has a hyperlink and a few other things on it that triggers an Arduino song (rickroll), and plays it through a ...
JaydenE55's user avatar
1 vote
0 answers
1k views

I am trying to create a class and getting getting the error incompatible types in assignment of 'const String' to 'char [32] when I declare char inString[32]; and try to set it as inString = server....
brad's user avatar
  • 201
1 vote
1 answer
1k views

I am writing a program that echos back the message sent to the web socket server on a host machine. When running the ESP module, the connection is established but immediately disconnects as seen in ...
John Mason's user avatar
0 votes
1 answer
51 views

I have a webserver configured on my esp8266 with is set to fire off electrical relay0 on my 8 port relay board. The device initializes relay0 perfectly and without errors. But when I configure the ...
brad's user avatar
  • 201
0 votes
1 answer
242 views

I have a domain. It is hosted by GoDaddy. I need to connect that server and receive some data by executing PHP files. I am not sure about the components. Tutorials on internet describes how to control ...
Snefru Clone's user avatar
0 votes
1 answer
512 views

Since my last post, I've been trying to do some extra things with my Stranger Things Wall Project. I connected a LCD Screen (16x2) that will take any text being processed to the wall and show what is ...
Feeds's user avatar
  • 163
3 votes
0 answers
581 views

I have an ESP32 application that uses a web server as a user interface. For auditing and debugging during development I use Serial; however, that is impractical in the installed system. So, I decided ...
Eric Vortriede's user avatar

1
2 3 4 5 6