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.

0 votes
1 answer
392 views

Since the ESP8266 can self program on Wifi, can we use it to program Arduino too with the binary sent via Wifi? My Arduino is connected with Reset + RX + TX pins and shared power.
-3 votes
0 answers
21 views

How to disengage a gear motor for manually turning a valve using clutch pull ring?
-2 votes
0 answers
33 views

How to make the gear motor to turn only from 0 degrees to 90 degrees and back to 0 degrees?
14 votes
5 answers
32k views

I'm planning to buy an ESP8266. Do I really need to learn Lua to play with it? I have seen some people using it with the standard Arduino IDE. Do you need a custom firmware to use the Arduino IDE ...
3 votes
1 answer
257 views

I am attempting to use an esp8266 to play an .mp3 audio file through a connected speaker using the 'ESP8266Audio' library. I have tested that the hardware setup is correct (e.g. I have been able to ...
0 votes
0 answers
52 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 ...
1 vote
1 answer
183 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 ...
0 votes
1 answer
65 views

I am using the Arduino IDE to do ESP-NOW communication with an ESP8266. In espnow.h, on line 53 I find the function prototype: int esp_now_send(u8 *da, u8 *data, int len); Why does it take the mac ...
0 votes
1 answer
76 views

I am trying to get the touch screen and display working on my ESP8266 + TFT ST7796S. However, only one of them works at a time. Below is my pin configuration: Function Device NodeMCU Pin GPIO TFT_CS ...
0 votes
1 answer
62 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 ...
4 votes
2 answers
197 views

I have an ESP8266 module which has downloaded a hex file for an Arduino Mega2560. This hex file (call it mega2560.hex) is sitting in the ESP's SPIFFS file system. What I want to do is basically ...
0 votes
2 answers
104 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 ...
1 vote
1 answer
4k views

I have made a home automation system consisting of a NodeMCU, 4 channel relay board running on Blynk and IFTTT. At the moment I'm only controlling a string of fairy lights and two LED strips from it, ...
2 votes
1 answer
195 views

I'm using my ESP8266 as a web server to tilt a camera with the servo Tower Pro Micro Servo 9G. #include <Servo.h> #include <ESP8266WiFi.h> const char* ssid = "SSID"; const ...
1 vote
1 answer
180 views

Here's the code: #include <SoftwareSerial.h> #define RX 6 #define TX 5 String AP = "..."; String PASS = "..."; SoftwareSerial esp8266(RX,TX); void setup() { Serial.begin(9600); Serial....

15 30 50 per page
1
2 3 4 5
135