esp8266 Questions
12
I am using a windows OS and I tried running a .ino code in arduino IDE for ESP8266 and came across the following error while trying to upload the code to ESP8266.
A fatal esptool.py error occurred...
Polyploid asked 1/5, 2023 at 12:13
3
Solved
Is there a good esp8266 simulator software that can be used to automate testing? Is it possible to get code written on Arduino IDE to run on these simulators?
Foxy asked 6/12, 2019 at 14:6
4
Solved
I would like to get a timestamp with Arduino-ESP8266.
But I don't have any idea how to get that.
I suppose we have to get the time from the Internet since the ESP8266 doesn't have any clock. Do w...
Allsun asked 9/11, 2016 at 20:11
4
Solved
I turned my esp8266 as an access point, so that the mobile devices could connect to it. Want to get the macAddress of the devices connected to it. How could I get it?
Odin asked 4/3, 2017 at 7:28
2
I can get the client mac-address in Access Point mode (AP_MODE), see suGetClientMacAddress() function below.Found this code on the internet. I try to figure out the MAC-address of clients in WiFi.m...
Karyokinesis asked 20/2, 2018 at 21:23
3
Solved
Note: Since esp8266/Arduino release 3.0.0 ICACHE_RAM_ATTR has been changed to IRAM_ATTR. For future readers, I updated the links to the ESP8266 Arduino Core docs, but left the rest of the question ...
Hunter asked 26/9, 2019 at 9:41
2
Solved
I have a problem include libraries FirebaseArduino There was an error.
fatal error: ArduinoJson.h: No such file or directory
How should I solve this problem?
This is my code
#include <ESP8...
1
Solved
I'm doing this on esp8266 with micro python and there is a way to clear OLED display in Arduino but I don't know how to clear display in micropython i used ssd1306 library to control my OLED
and th...
Lutherlutheran asked 10/1, 2022 at 17:31
2
I am using the ESP8266 with Arduino IDE and have set up a server at port 200 . The IP is also defined as the same as 192.168.1.100.
ESP8266WebServer server(200);
IPAddress ip(192, 168, 1, 100); //...
1
Solved
I am getting "HTTP/2 client preface string missing or corrupt."
My thoughts are that it has to do with the headers not being set correctly. It is likely the implementation of WifiClient/W...
Hierophant asked 10/12, 2021 at 22:44
3
I want to send all paths that start with "/robot" to a certain handler using ESP8266WebServer.h. I tried a few variations:
server.on ( "/robot", handleDirection );
server.on ( "/robot/", handleDir...
2
I am building an IoT solution where I will have multiple devices connected to my local network that I want to connect to a hub that controls my solution.
Once I connect a new device I want to conne...
Troubadour asked 21/11, 2020 at 13:48
4
Solved
What I done till now is
I created mdns service in my nodemcu
... // code used to create the mdns service
if (mdns.begin("esp", WiFi.localIP()))
Serial.println("MDNS responder started");
s...
2
Is it possible at all to use map with ESP8266 for Arduino package?
Here is my code:
#include <map>
typedef std::map<int, int> Items;
void setup() {
Items items;
items[2]=5;
//ite...
Mischievous asked 31/10, 2015 at 11:19
7
I have been struggling for some time now trying to get my ESP8266 ESP-12 to work. I was able to get it loaded with the NodeMCU software. Now, the board constantly restarts itself. Whether I have a ...
3
Solved
Working with the RobotDyn ESP8266PRO version of the NodeMCU.
First, no doc provided by manufacturer.
Here is as far as I got:
10Kohm between EN and 5V
10Kohm between IO15 and gnd
ground IO0 and...
1
I am working on a Home Automation project and I want to connect an Mobile Application to ESP8266.
I can Publish a message from Mobile App to AWS server which is setup as a broker. (Working)
I can...
Onstad asked 22/8, 2016 at 7:4
2
I've seen examples for ESP8266 chip Wifi clients logging onto a WPA2 personal network.
However, is it possible for an ESP8266 client to login to an enterprise network?
1
I've made a webserver with an esp8266.
sResponse =
"<p>"
"<center>"
"<h1>ESP8266 Web Server</h1>"
"<p>Time <input type='text' name='date_hh' size=2 autofocus>...
4
Solved
I have a NodeMCU ESP8266 board running MicroPython. I'm running a web server on my ESP8266. This is my first IoT project based on one of these boards.
The below is a snippet of the code.
This is...
Insentient asked 5/3, 2017 at 7:29
2
Solved
The Arduino docs explain yield() at https://www.arduino.cc/en/Reference/Scheduler with regards to the Due. Apparently it is part of the Scheduler library:
#include <Scheduler.h>
However, I...
Etienne asked 28/12, 2015 at 17:14
1
Solved
I have made a simple Node.js local server to receive POST requests from ESP32 and put it in a database. The server is working fine as I tested it using postman. The server is listening to port 127....
Non asked 5/12, 2017 at 18:4
2
Solved
I am trying to send AT commands to ESP8266 to get connected with internet with the Wifi.
When I am sending AT and AT+RST command on serial monitor then I am getting OK and ready response which see...
Benham asked 5/5, 2017 at 16:21
2
Solved
I am trying to connect Apple homekit to nodemcu board, I found a tutorial which works on my computer, but I am wonder if there is any way to load and run Node.JS on a NodeMCU board (ESP8266)?
0
I am writing some simple code using MicroPython running on a Digistump Oak, which is basically an ESP8266 breakout board. I'm trying to understand the behavior that I see when performing periodic r...
Kinky asked 8/2, 2017 at 0:11
1 Next >
© 2022 - 2024 — McMap. All rights reserved.