Skip to main content

Questions tagged [esp8266]

An IC that offers Wi-Fi networking compatible with b/g/n standards. It also has integrated TCP/IP protocol stack. Extremely popular along IoT community as a low cost and powerful board.

Filter by
Sorted by
Tagged with
0 votes
0 answers
47 views

I am trying to build a simple project to get data from a web server and display it, using an Arduino Uno R3 clone with integrated ESP8266 wifi. What I have so far: The ESP8266 attempts to connect to ...
Robb's user avatar
  • 1
0 votes
1 answer
59 views

I'm using the Arduino IDE to program ESP8266 to communicate with each other using ESP-NOW. If I call esp_now_send with the broadcast MAC address (FF:FF:FF:FF:FF:FF), the message is sent and the slave ...
Sod Almighty's user avatar
0 votes
2 answers
100 views

I using a nodemcu v2 esp8266 for my automatic watering system. I used 3v - 5v DC pump for the watering system. The pump is controlled based on the soil moisture level ( or Blynk ). When the code was ...
Man Yin Kong's user avatar
1 vote
2 answers
207 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
0 votes
2 answers
188 views

I have a project that involves two ESP8266 and a NEO-6M GPS module. I want to send the GPS data to the other microcontroller using ESP-NOW, however it fails to send the data although it displays the ...
mizuto0's user avatar
0 votes
1 answer
173 views

I'm just about starting with Arduino, ESP8266, etc. The first project would be to get something diplayed on an e-paper. My hardware: LOLIN D1mini V4.0.0 Tri-Color ePaper 2.13 (SSD1680) Shield ...
theozh's user avatar
  • 105
-1 votes
1 answer
206 views

Setup: OV7670 -> STM32F103... --USART--> ESP01 --UDP--> Gateway --> Internet --> Server I want to achieve a real-time streaming experience. Here is my analysis: According to the ...
Muhammad Ikhwan Perwira's user avatar
1 vote
0 answers
77 views

I am working on a code for ESP boards that can be used on either ESP32 or ESP8266 and I want to make sure I include the correct libraries. I know I can check if ESP32 OR ESP8266 are defined, but I ...
SagiZiv's user avatar
  • 201
-1 votes
1 answer
102 views

I'm trying to use the library in my project. An implementation with wm.setConfigPortalBlocking(false) is needed, but when a large delay is used in the loop, the portal either does not work at all, or ...
MolekulaTepla's user avatar
2 votes
0 answers
447 views

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 ...
Marifin -'s user avatar
2 votes
1 answer
187 views

We're using the ESP8266 to receive data from the Arduino Mega board, where our sensors are connected. Supposedly, our ESP is connected to the Blynk App. However, the values showing up in our dashboard ...
Earth_Lovers's user avatar
1 vote
1 answer
276 views

Here's the code in question: void setup() { Serial.begin(115200); Serial.println(); char test[5000]; int i; for (i = 0; i < sizeof(test)-1; i++) { test[i] = 'x'; Serial....
Daavee18's user avatar
2 votes
1 answer
219 views

I am using an ESP8266-01S that only works with 3.3 V power. I want to control a 5 V relay. I gave each component its own power source and got an NPN transistor and wired it like in the diagram, but ...
Samy ashraf's user avatar
0 votes
1 answer
167 views

I have a ESP-WROOM-02 module with on-board 18650 battery. V+ and GND are exposed on the board. Can I directly charge the battery using an USB-C connector with the two cables (red and black) directly ...
Frank Piselli's user avatar
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
1 vote
1 answer
716 views

In the code below which is running on a WEMOS D1 (ESP8266), a NeoPixel strip turns on 1 LED in red which moves left to right and then right to left whilst the board attempts to connect to Wi-Fi in the ...
Lachlan Etherton's user avatar
1 vote
1 answer
178 views

This super simple code, that saves data to a csv file, works perfectly fine on my Arduino Uno (I am using the default SPI pins). However, for my project I need to use an ESP8266. Does the library ...
LMJ's user avatar
  • 29
-2 votes
2 answers
88 views

I would like to know about physically passing through a pin in order to get to another. For instance, if I have a sensor on one side of an ATMEGA328P or ESP8266 (Wemos D1 Mini) yet need to connect to ...
jhorv's user avatar
  • 41
1 vote
1 answer
154 views

I was emulating the pedestrian traffic light cyclic pattern (red, green, green flashing) in the next Arduino code. But when I run this code with my ESP8266 Wemos D1 mini controller, it appears the ...
Hong Christian Lin Jiang's user avatar
0 votes
1 answer
1k views

I have been trying to connect to the Arduino IoT cloud using my Arduino Uno and an ESP-01. The Arduino IoT cloud does not recognize my device as genuine. Hence, I've been trying to create a thing and ...
Saurav Ghimire's user avatar
-1 votes
1 answer
365 views

When I connect an ESP01 WiFi module and water pump in a parallel circuit to an Arduino Uno's 5 V pin, the ESP01 stops working. The ESP01's built-in LED starts blinking chaotically and the serial ...
stanimirsp's user avatar
1 vote
1 answer
214 views

I try to upload a script which starts a webserver on the ESP8266 with a simple web GUI where the user can enter his WLAN credentials. /* ===============================================================...
Black's user avatar
  • 109
2 votes
1 answer
303 views

I have this ESP8266 Heltec NodeMCU board with OLED. The pins are described here. I have the following problem. The both OLED (with u8g2) and Wifi work fine individually. There is a problem getting ...
Fabian's user avatar
  • 171
1 vote
0 answers
244 views

I'm trying to flash a spiffs on a esp32 but it is not working, i'm using these commands from this source: to create the image: mkspiffs -c /data/ -b 4096 -p 256 -s 0x100000 spiffs.bin my output was ...
Danilo Namitala's user avatar
0 votes
1 answer
326 views

I am using an ESP8266 to control a ring of neopixels. I want to use a PIR to trigger a brief light show. I'm using batteries and need them to last as long as possible. I have it working by checking ...
Eoin Byrne's user avatar

1
2 3 4 5
41