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

I am trying to write bare-metal code for ESP8266 (for learning how embedded system works). My GPIO code is working and now I am trying to play around with UART. In ESP8266 REG = 0x60000000 is FIFO for ...
RudraSama's user avatar
2 votes
1 answer
51 views

I am working on an Arduino project, and I have been trying to utilize SSDP protocol to connect to ESP8266 from my phone. Even though I can set static IP for my ESP and define its IP in android APP I ...
Kevin's user avatar
  • 23
0 votes
0 answers
53 views

I have an Arduino C++ program for ESP8266 that uses ESPAsyncWebServer to serve dynamic HTML pages. The static parts of HTML, CSS and JavaScript are stored in PROGMEM as string literals. The dynamic ...
Raja's user avatar
  • 1,319
-1 votes
1 answer
58 views

I am using SeedStudio ESP32 Xiao Sense to record multiple samples of audio at once. I modified the sample code to do so. However, for some reason the header is corrupted(not sure for other parts) and ...
Himanshu_Verma's user avatar
0 votes
0 answers
31 views

I am doing a project called "smartbin with iot notifications". I've done all the code already, I just need to match it with the notifications in my blynk but for some reason it is not ...
jerald's user avatar
  • 25
0 votes
0 answers
51 views

everyone! I'm trying to make a CO2 sencor and it works well, until its runtime exceeds 999999 milliseconds. My wiring is TXD0->RX, RXD0->TX, GND->GND and V USB->Vin pinout on picture. I ...
Urilobus's user avatar
0 votes
1 answer
92 views

I am going down a bit of a rabbit hole but as far as I can tell the LittleFS module has been included in arduino-esp32 It seems that is the newer version of this. So it looks like it should be in my ...
Jackie's user avatar
  • 24k
-1 votes
1 answer
2k views

I am running VSCode 1.95.0 on Win10 64 applying Platformio for programming eg. ESP8266. I want to use the formatting feature of clang. Downloaded clang+llvm-18.1.8-x86_64-pc-windows-msvc.tar.xz and ...
autoguider's user avatar
0 votes
0 answers
37 views

The ESP8266Webserver built in key-name pair parser does a nice job of accessing the arguments by name or by index. For example, it is almost trivial to process the following http get request http://...
Ornea's user avatar
  • 55
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
57 views

I am attempting to turn my generic Arduino R3 (an ELEGOO UNO R3) into an IoT device by connecting an ESP8266 ESP-01 WiFi module. Here are my wiring connection: GND - GND TXD - RX IO2 - 3.3v (through ...
realistdream's user avatar
1 vote
0 answers
118 views

Just for the record, I am a C# developer and tend to focus more on api's and backends, firmware development / C / C++ is EXTRERMELY new to me! I have been asked to port our existing ESP8266_NONOS_SDK ...
A-Lone-Developer's user avatar
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
0 answers
96 views

This is my code for ESP8266 trying to send a request to the API to get a response. But when I am trying to scan a QR code the output is always connection failed, at first I thought it was because of ...
jack's user avatar
  • 11
0 votes
0 answers
71 views

I have ESP8266 project in Arduino IDE that connects to AWS MQTT server. For this purpose PubSubClient (https://pubsubclient.knolleary.net/) library was used. After connect procedure execution I get ...
vico's user avatar
  • 18.5k
0 votes
0 answers
127 views

Mine is a basic IoT project using ESP8266. I have integrated Tzapu's WiFi Manager and PubSub Client library for MQTT. It uses a TLS connection using WiFiSecure. The code is mostly copied from example ...
Raja's user avatar
  • 1,319
0 votes
0 answers
71 views

I'm working on a project where I'm using an ESP8266 board to send sensor data to a REST API endpoint using HTTP POST requests. However, I'm encountering an error when trying to send the POST request, ...
Hiba DJERADI's user avatar
0 votes
1 answer
74 views

I'm working on a project where my ESP8266 receives color hexCodes from the internet and then I use that color for an LED strip. An example text that I receive is "$3#FF00FF" However my code ...
kazar4's user avatar
  • 79
0 votes
0 answers
57 views

I am developing a simple project with an ARDUINO MEGA with a ESP8266. The ARDUINO gets some data, and send to a web, and from the web to a database. The system works perfectly when the web-database ...
Julio Ausin's user avatar
1 vote
2 answers
152 views

Following problem: I am creating a webinterface for an ESP8266. The Webinterface should make HTTP Requests to the ESP that then executes Code. My Problem is that i get weird preprocessor information ...
Lipe's user avatar
  • 71
-1 votes
1 answer
75 views

My setup consists of an arduino MEGA, an ESP8266-01 wifi module and an mq4 sensor whose values I want to store in a database, I have set up MySQL and can send values via apache like http://192.168.1.6/...
kml's user avatar
  • 1
0 votes
0 answers
90 views

I have connected my NodeMCU V3 to my laptop via Micro-USB (Good Quality). If I enter a basic code, e.g. LED blinking or Sensor reading, it works fine. But when I tried to connect to WiFi, NodeMCU ...
Harshal Chavan's user avatar
0 votes
0 answers
250 views

I am trying to make a voice changing device with esp32 board (PlatformIO + ArduinoIDE). I have: external microphone on input esp32, to process voice (internal ADC is used for incoming signal - I2S ...
Kenion's user avatar
  • 27
0 votes
0 answers
358 views

I'm encountering an issue where my AS608 fingerprint sensor works flawlessly when connected to an Arduino Uno but isn't being detected when connected to a Wemos D1 R1 board (ESP8266). The sensor doesn'...
MEHAL WIAM'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
1 answer
116 views

I tried to receive array of float values via I2c using Esp8s66 (in Arduino IDE) in the following way: void receiveEvent(int byteCount) { // Ensure byteCount matches the size of the float array if (...
Fga's user avatar
  • 3
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
0 votes
1 answer
1k views

I've tried to connect my WeMos d1 mini with arduino and tried to upload my code to WeMos. However, there comes the error message: A fatal esptool.py error occurred: Failed to connect to ESP8266: Timed ...
Felix Meshach's user avatar
1 vote
0 answers
487 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
170 views

I have create a MQTT system using MQTTClient library on my Arduino IDE for ESP8266 to publish and subscribe to io.Adafruit. Everything is working great except there is some functionality that I can't ...
user1114881'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
47 views

I am using Visual Studio code with Arduino Core to program an esp8266. I have a server running on it, and I have been trying to find a way to package my Bootstrap styling files into the bin that I ...
clixxclixx's user avatar
1 vote
0 answers
62 views

I've recently started working on a project trying to upload sensor data from my Arduino Uno serially connected to an ESP8266, to a mySQL server. I can't seem to figure out what's incorrect about my ...
intelligantnoob'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
1 vote
1 answer
293 views

I am using The HTTP part to make a URL call, and the MQTT part allows to publish a message to a specified topic. BUT Experiencing connection issues when combining HTTP and MQTT calls in a loop,MQTT ...
Kalpesh Navadiya's user avatar
1 vote
0 answers
136 views

I'm seeing a strange anomaly with my ESP-01s. When I use the function "digitalWrite(LED_BUILTIN, HIGH)" the LED turns off, and when I use the function "digitalWrite(LED_BUILTIN, LOW)&...
Los2000's user avatar
  • 66
0 votes
1 answer
501 views

i am using esp8266 to calculate the rpm using hall 3144 sensor, and while doing so there is an issue arises in code. void exti_callback() { Serial.println("working"); } void setup() { ...
Ryu's user avatar
  • 1
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
1 answer
192 views

With the help of PlatformIO and the U8G2 library, I want to write an application for an ESP8266 microcontroller. The U8G2 offers countless fonts, and I would like to display them on a graphical ...
Franziee's user avatar
  • 649
-1 votes
1 answer
1k views

I installed the Arduino IDE and decided to create a project. Installed all libraries. But I do not understand why such an error. Help I want to connect ESP8266 to Arduino Uno. I need the arduino to ...
Mykhailo's user avatar
0 votes
1 answer
220 views

I have seen everywhere how to send FCM(firebase cloud messaging) notifications from Arduino through different libraries. However, I am wondering if there is a way to make Arduino subscribe to a ...
Alladin's user avatar
  • 1,072
0 votes
0 answers
117 views

I have NodeMCU v3 ESP8266 and RFID RC522 card reader. I want to send some data using the insert_status.php API on the server. But it gives an error. What I want to do is very simple, the php API will ...
theoyuncu13's user avatar
0 votes
1 answer
115 views

I'm using an ESP8266 connected to an Arduino Uno via SoftwareSerial to make a get request to a telegram api. The data with AT-commands prints correct, but the response from the server is incomplete (...
Nikita0607's user avatar
0 votes
1 answer
1k views

I am trying to connect a button to my d1 mini ESP8266. The button is connected with a pulldown resistor (10kOhm) to GND. And on the same side of the button to the D4 Pin. on the other side the button ...
Louis Eiden's user avatar
-1 votes
1 answer
192 views

I am trying to monitor temperature with a D1 mini and a NTC, which is working, but the Temperature is calculated wrong. On the Serial Monitor I get Temperatures of around -300°C. When printing the ...
Louis Eiden's user avatar
0 votes
1 answer
592 views

Nodemcu runs normally, a few seconds later an error appears so it always asks to restart. Even though the numbers appear on the website and serial print, the restart occurs after the text appears, ...
Bimo's user avatar
  • 1
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
0 votes
2 answers
3k views

I am trying to create an app that allows me to use my esp32 as a "GPS" for turn by turn navigation. I searched a lot, saw a lot of projects, but couldn't understand any of them + it seens ...
Bruno Bianchi's user avatar

1
2 3 4 5
20