Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
63 views

I’m working with an ESP-01 (ESP8266, AT firmware) connected to an STM32 “Bluepill”. I receive data from the ESP using UART interrupt (HAL_UART_Receive_IT) and I want to detect when a full response ...
Mohamed Ali Mohamed's user avatar
0 votes
0 answers
37 views

I am working on an ESP8266-based IoT project (waste segregation system) and trying to send data to Firebase Realtime Database. I am using the latest Firebase ESP8266 Client library (FirebaseESP8266.h) ...
Varunkumar's user avatar
0 votes
0 answers
39 views

I am working with ESP8266_RTOS_SDK, I have imported an old project from my backup which used to run fine earlier when I was using an old system. I have installed the complete tool chain (make / xtensa/...
Amorphous's user avatar
0 votes
0 answers
50 views

While serving a web interface on ESP32 controllers, I find it useful to fall back providing an on-device AP, if the configured WiFi AP is not available after some timeout. This way the device can ...
dronus's user avatar
  • 11.4k
0 votes
1 answer
49 views

I am using an ESP8266WiFiHW-628 V0.0.1 to create an access point (code below). While I am able to connect to the AP using a windows machine when I am trying to connect using iOS devices I get "...
Erez's user avatar
  • 11
0 votes
1 answer
86 views

i have a problem with my new ESP01. I tried using AT commands with the baud rate of 115200, but don't receive OK answer. I also tried to flash it and didn't quite succeed as it's just flashing that ...
Maxymus 989's user avatar
0 votes
0 answers
65 views

The purpose of the code listed below is to enable Alexa to control a relay, which then controls a medical chair slave remote control. The code is significantly based on this example: https://...
Vin's user avatar
  • 1
0 votes
0 answers
87 views

I have had this problem with an esp8266 nodemcu where I cannot seem to find a way to update a variable on a webpage without having to sit there and spam F5, the project is for a weather vane to show ...
bob's user avatar
  • 11
1 vote
1 answer
450 views

I started working a small "smart home" project to learn about embedded development and Rust. I have an ESP8266 with a DHT to measure humidity and temperature, written in C++ a server ...
Spray'n'Pray's user avatar
0 votes
1 answer
75 views

I want to send a command from my smart phone to move a servo at my house when I am at the work. Is it possible to do that with the Raspberry Pi and a wifi module? I am not an expert in this field, so ...
Yusuff's user avatar
  • 1
0 votes
1 answer
52 views

#include <ESP8266WiFi.h> #include <SoftwareSerial.h> #include <ESP8266HTTPClient.h> #define RX_PIN D5 // Connect this pin to RX pin of the fingerprint sensor #...
Dhruval Patel's user avatar
0 votes
0 answers
76 views

I want to send data to Firebase Realtime Database using stm32f4 and esp-01 wifi module. this is how I tried to connect and send to firebase Realtime Database connect firebase and send message funciton ...
JakutenSiz's user avatar
0 votes
1 answer
86 views

Problem: The ESP8266 example sketch StreamHttpClient, seems to be broken for 3.1.x version of the Arduino SDK. The URL is broken because it returns HTTP code 301. However, even if you fix the URL, the ...
Parag Thakur's user avatar
0 votes
0 answers
86 views

I am new to ESP8266. I try to connect ESP8266 to my network. On serial monitor I send AT and AT+CWMODE=1 command and I get "OK". Then I send AT+CWLAP command but it returns just OK. One of ...
cakiç's user avatar
  • 1
1 vote
0 answers
486 views

I'm new to working with WebSockets and arduino. I'm trying to connect to a WebSocket server that I run on a separate computer from my ESP-01s. So far I'm able to connect to my wifi and get a local IP. ...
Alejandro Angel Rivera's user avatar
0 votes
0 answers
41 views

I'm trying to connect a Sensirion sps30 with a ESP8266 on wifi. I used Arduino to program the ESP8266, but this is the first time I'm doing this. I found a filled out sketch and I only had to put in ...
Marjolein Klaver's user avatar
0 votes
0 answers
43 views

I am currently working on a project that transfers data and saves it directly to google sheets, however most of the other projects utilizes boards like NodeMCU and ESP32. Can the ESP8266-01 WiFi ...
James Salvador's user avatar
0 votes
1 answer
205 views

Background I have an Arduino sketch running on an ESP8266 clone, using the vanilla ESP8266WiFi.h library. This works as expected on the bench, when it is in clear sight of just one access point (...
Edd Inglis's user avatar
  • 1,145
0 votes
1 answer
40 views

I got a code of the first one: import network import socket from machine import Pin import time # LED pins led_pin = Pin(0, Pin.OUT) led_pin.on() led_pin2 = Pin(2, Pin.OUT) led_pin2.off() time....
Mateusznr 7's user avatar
0 votes
2 answers
373 views

I've got this curious case which I'm trying to make sense of. I use ESP8266 boards in a particular project of mine. There are smaller boards and larger boards, with other modules on them, purchased ...
kirillandy's user avatar
0 votes
0 answers
58 views

I am trying to connect the esp 8266 wifi module with the online server when I press a button on the site I expect to see the data in the file.txt that I upload to the site but I receive something like ...
abdallah mohamed sedik's user avatar
0 votes
0 answers
261 views

I have a NodeMCU ESP8266 WiFi development board. I was using the RangeExtender-NAPT example sketch in Arduino IDE for ESP8266WiFi library. You can find the code here too. It works great. I was able to ...
Tirtharaj Sinha's user avatar
0 votes
1 answer
665 views

I'm facing an unexpected behaviour while writing sketch for NodeMCU 1.0 (ESP-12E). I'm trying to show some counter while connecting to the WiFi as a part of my void setup(). The idea is to show ...
Nick's user avatar
  • 1,978
-2 votes
1 answer
943 views

I am new to this domain, for a project I have to build a health monitoring system to monitor temperature, heartrate and SPO2 . I am using MAX30102 Pulse Oximeter sensor, and MCP908 temperature sensor ,...
Lili Lili's user avatar
-1 votes
1 answer
707 views

I am trying to transmit my voice live from my mobile phone to esp8266. I am using web browser as client interface and Wifi as connection. I heard that this can be done with websocket , what I need is ...
Sina's user avatar
  • 51
0 votes
0 answers
208 views

I am working on a project i.e. Energy Meter in which Esp32_wroom-32E is being used by me. When I install the device in clients homes. they work fine for a week or so and then Wifi connection issues ...
Abrar Ali Shah's user avatar
0 votes
0 answers
262 views

I'm using the ESP8266 (WROOM-02D) for MQTT over WIFI. I'm using AT commands for MQTT. I'm currently using ESP8266-IDF-AT_V2.2.1.0 firmware on the WROOM-02D. My broker has been configured to use both ...
bluscape's user avatar
  • 373
0 votes
0 answers
368 views

I am testing downloading a large file (2.7 KB) from a URL my github repository. I wanted to test downloading the file in chunks of 100 bytes and writing it to an SPIFFS file. I basically want to ...
First User's user avatar
0 votes
1 answer
309 views

I'm trying to connect NODEMCU to my home network and set static IP address, but the static IP didn't set properly this is the code: #include <ESP8266WiFi.h> void setup() { // put your setup ...
m0rbot's user avatar
  • 11
0 votes
1 answer
456 views

I'm developing an react native based OTA app updater. The file is been searched by the fs and then uploaded to esp32 via http where esp32 is in AP mode to receive the file over webserver. During the ...
GIRISH PAWAR's user avatar
1 vote
0 answers
144 views

volatile boolean interrupt_occurred = false; #define LED_pin D1 void ICACHE_RAM_ATTR handleInterrupt() { digitalWrite(LED_pin, HIGH); // Interrupt occurred, so turn On LED ...
Jiaao Liu's user avatar
0 votes
1 answer
222 views

I'm new in working with embedded programming and I've got a question that is - "I would like to make a project where if I press a button it should send a 15 seconds video to the contact number ...
DEVENDRAN M's user avatar
1 vote
2 answers
4k views

I'm trying to use WiFi on a ESP8266EX based board (XTVTX WEMOS D1 Mini Pro). The sketch is really simple. #include <ESP8266WiFi.h> void setup() { Serial.begin(9600); WiFi.begin("<...
gior91's user avatar
  • 1,775
0 votes
0 answers
4k views

I am trying to use the example sketch "Helloserver" to make a server using a generic ESP8266 and an arduino uno. I have configured and connected every physical component according the sketch´...
Freshguy12's user avatar
1 vote
2 answers
833 views

I am trying to fetch some details from an API endpoint (https://bitcoin-ethereum-price-test.vercel.app/btc). But everytime it is returning false (-1). When I GET the endpoint on my browser it is just ...
emAyush56's user avatar
  • 211
0 votes
1 answer
624 views

I'm trying to upload an Arduino file and its associated data folder to an esp8266 using Arduino-cli, but I'm having trouble uploading the contents of the data folder to the esp8266   SPIFF memory. I ...
user19930844's user avatar
1 vote
0 answers
169 views

I am unable to increase the brightness using display.brightness(255) anyone help me regarding this display.begin(8 or 4 or etc...) if i want to keep 30 modules of 32x16 .Am not understanding about ...
Dileep Pulluru's user avatar
0 votes
2 answers
161 views

I'm making a little ESP8266 project for myself, in which I want to display the Temperature and Humidity of an DHT11 sensor on a website. The code I have now works perfectly, but the timestamps at the ...
siebetimmer's user avatar
0 votes
1 answer
343 views

I want to send data from DHT11 to URL using an ESP8266 NodeMCU. I use the board "NodeMCU 1.0 (ESP-12E Module)". My code is as follows: #include <dht.h> #include <ESP8266WiFi.h> ...
XmlShark's user avatar
  • 114
-1 votes
1 answer
809 views

i recently changed my wifi ssid and password and i'm wondering how could i change the password i have already tried clearing the board with a flasher reuploading the code and nothing worked for it ...
Lotar 122's user avatar
0 votes
0 answers
696 views

I am working with the Songhe Mega2560 + WiFi R3 Mega2560 + ESP8266 4MB Memory integrated circuit for a project involving connecting to a WiFi signal and reading the RSSI value. Below is a basic sketch ...
Jarhatz's user avatar
0 votes
0 answers
63 views

I am working with DHT22 sensor and NodeMCU to get temperature and humidity values. I want to store values on google sheet and also display values on 1.3 inch oled display. I have used millis() to do ...
Jashanjot Kaur's user avatar
1 vote
6 answers
8k views

I am trying to connect my ESP32 to my Wifi Router using Arduino IDE but it is not connecting & giving a connection failed or disconnected status. I also confirmed it is scanning all the available ...
MA Munir's user avatar
0 votes
1 answer
574 views

Using the ESP8266WiFi library, I have two ESP-01's/ESP8266's connected over WiFi. It works perfectly when the client sends a request (all non HTML!) to the server (using port 5000 - to prevent any ...
ToniE's user avatar
  • 39
-1 votes
1 answer
2k views

I wanted to put an already made website inside this script so I don't have to write the whole website again ESP32 device model #include <WiFi.h> #include <DNSServer.h> #include <...
FaltaDEiNfORmAçÃO 's user avatar
0 votes
1 answer
1k views

I am trying to use an arduino uno to check to see if an esp8266-015 wifi module is working using AT commands. Connections ESP8266 Arduino Rx-Rx Tx-Tx GND-GND EN-3.3v VDD-3.3 I selected arduino uno in ...
Killerbee's user avatar
0 votes
0 answers
82 views

The code is supposed to create a soft ap, and whenever the button is pushed, it should send a '1' to the client, causing the pin to go HIGH, and whenever it is not pushed, set the pin to LOW. This ...
HileyNoteson's user avatar
0 votes
0 answers
47 views

i want to use AT command but i cant i use esp8266 wifi shield model and i connected jumper line enter image description here but #include <SoftwareSerial.h> SoftwareSerial mySerial(0,1); //RX, ...
PANGMIN XX's user avatar
0 votes
1 answer
124 views

Edit: I apologize for the lack of information and quality of the previous version of this question, I will try to rephrase and give more information about my issue. I am currently running a web server ...
Mauricio Buendía's user avatar
0 votes
0 answers
114 views

I try to connect a few ESP8266 (STA-Mode) to one ESP8266 (AP Mode) All of the ESP Stations connect well, but one will not connect. The one can connect to other networks. Debug Serial off well ...
maar10's user avatar
  • 1