Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
57 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
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
1 vote
0 answers
29 views

So basically what I am doing is, I created a simple Blink LED program using platformio for ESP8266 (no big deal). As we know, we get firmware.bin and firmware.elf files in .pio/build/nodemcuv2/ folder....
RudraSama's user avatar
0 votes
0 answers
25 views

I'm trying to connect my NodeMCU (ESP8266) device running Micropython to AWS IoT but wwhile running the code I'm getting the following error: start connecting Connected: True Key and Certificate ...
Shekhar's user avatar
  • 898
0 votes
1 answer
122 views

I am using Wemos Mini ESP8266 and trying to make control panel on this platform. But i have stuck when it needs to save data to a file. Tried to using LittleFS method to save json to file, still ...
Yukio Ito's user avatar
0 votes
0 answers
36 views

I'm trying to use an ESP8266 to connect to two WebSocket servers simultaneously using the arduinoWebSockets library. This is a snippet of my code. I then attempt to display data on 7 segment displays. ...
Jxck's user avatar
  • 3
0 votes
0 answers
45 views

I am working with a ESP01 module with AT Firmware, I have been trying to establish a communication between ESP01 and the Firebase database to read and write some numerical value but right now I am ...
divyanshu sharma's user avatar
0 votes
1 answer
84 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
1 vote
0 answers
40 views

I make a device on esp8266, which connects to php Workerman websocket server via websocket using WebSocketsClient.h library. Everything works, connection is established. But when I turn off the device,...
Alex Black's user avatar
-2 votes
1 answer
47 views

I am trying to interface multiple buttons with Esp8266 and display it on a 16x2 LCD. I am using micropython. Here is my code import time from machine import I2C, Pin, Timer from i2c_lcd import I2cLcd ...
Waqar Ahmad's user avatar
  • 3,730
0 votes
1 answer
110 views

I tried to install nodemcu firmware to ESP32 C3 super mini board, with firmwares builded on https://nodemcu-build.com from dev-esp32-idf3-final branch. After flashed, the serial console outputs very ...
Lay András's user avatar
-2 votes
1 answer
90 views

I am working with ESP8266 moduls in Wifi-Station Mode. Each new ESP8266 module is assigned a different IP address by the wifi router. That's why I need the Ip addresses as Javascript variable, but ...
Michael Wenning's user avatar
1 vote
1 answer
57 views

I have esp8266, it connected to 3 temperature sensors. I put all data in list (temperature and time). After 9 hour of work esp8266 just refresh everything and all data get lost. I tried check my code, ...
Yaroslav M.O'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'm pretty new at firebase and in my arduino project, where I use an ESP8266 01S module, I want to hardcode an Id, representing the Arduino project. Then with that Id I want to create if not already ...
Joaquin Hazzi's user avatar
-1 votes
1 answer
77 views

I'm trying to execute "transfer" function of an ERC-20 token with my ESP8266 Microcontroller using Micropython. The problem is Micropython doesn't have libraries like web3.py so i have to ...
Harsh Sharma'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
90 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
1 vote
1 answer
443 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
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
1 answer
108 views

I have an ESP8266. On this board I'm running the newest Version of the MicroPython firmware (1Mib). I have a Java Vaadin Web Application with 2 Buttons. One Button is for publishing, that the LED ...
Larshle's user avatar
0 votes
1 answer
61 views

I can't print clock_t as a double or print time elapsed void app_main() { clock_t start, end; long double cpu_time_used; start = clock(); ESP_LOGI(TAG, "Elapsed time"); ESP_LOGI(TAG, &...
Adryan Reis's user avatar
1 vote
1 answer
157 views

Hi I have been trying to use stm and esp-01 and cominicate with firebase with backend server. my backend server js is this: const express = require('express'); const app = express(); const ...
JakutenSiz's user avatar
0 votes
0 answers
75 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

1
2 3 4 5
50