Code
#include
const char* ssid = “Phamson”; const char* password = “phamtheson”; WiFiServer server(80); void setup() { Serial.begin(115200); //Default Baud Rate for NodeMCU delay(10); pinMode(2, OUTPUT); // Connect Relay to NodeMCU’s D4 Pin digitalWrite(2, 0); // Connect to WiFi network Serial.println(); Serial.println(); Serial.print(“Connecting to “); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print(“.”); } Serial.println(“”); Serial.println(“WiFi connected”); // Start the server server.begin(); Serial.println(“Server started”); // Print the IP address Serial.println(WiFi.localIP()); } void loop() { // Check if a client has connected WiFiClient client = server.available(); if (!client) { return; } // Wait until the client sends some data Serial.println(“new client”); while(!client.available()){ delay(1); } String req = client.readStringUntil(‘\r’); Serial.println(req); client.flush(); int val; if (req.indexOf(“/gpio/0”) != -1) val = 0; else if (req.indexOf(“/gpio/1”) != -1) val = 1; else { Serial.println(“invalid request”); client.stop(); return; } // Set GPIO2 according to the request digitalWrite(2, val); client.flush(); String s = “HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n
\r\n
\r\nGPIO is now “; s += (val)?”high”:”low”; s += ”
“; }
/***********
Juan A. Villalpando
KIO4.COM
25/11/22
Version del módulo 9.2.4
Velocidad 9600
Carga el programa. Ve al Serial Monitor.
Escribe en un navegador 192.168.1.5
Pulsa los botones para encender o apagar el LED13 del Arduino.
***********/
#include
#define DEBUG true
SoftwareSerial esp8266(3,2);
// El TX del módulo al terminal 3 del Arduino.
// El RX del módulo al terminal 2 del Arduino.
void setup()
{
pinMode(13,OUTPUT);
Serial.begin(9600);
esp8266.begin(9600); // Importante la velocidad del módulo.
sendData(“AT+RST\r\n”,2000,DEBUG); // Borra la configuración que tenía el módulo
sendData(“AT+CWJAP=\”Nombre_de_tu_WiFi\”,\”Clave_de_tu_WiFi\”\r\n”, 2000, DEBUG);
delay(5000); // Espera un poco que conecte con el Router.
sendData(“AT+CWMODE=3\r\n”,1000,DEBUG); // Modo de cliente y servidor.
sendData(“AT+CIFSR\r\n”,1000,DEBUG); // En el Serial Monitor aparece la IP de cliente y servidor.
sendData(“AT+CIPMUX=1\r\n”,1000,DEBUG); // Multiples conexiones.
sendData(“AT+CIPSERVER=1,80\r\n”,1000,DEBUG); // El Puerto web es el 80
}
void loop(){
if(esp8266.available()) // Consulta si el módulo está enviando algún mensaje
{
if(esp8266.find(“+IPD,”))
{
delay(500);
int connectionId = esp8266.read()-48;
// Aquí las construcción de la PAGINA WEB.
String webpage = “HTTP/1.1 200 OK\r\n Content-Type: text/html\r\n\r\n\r\n”;
webpage += ”
KIO4.COM
“;
webpage += ”
“;
webpage += ”
\r\n\r\n”;
String cipSend = “AT+CIPSEND=”;
cipSend += connectionId;
cipSend += “,”;
cipSend +=webpage.length();
cipSend +=”\r\n”;
sendData(cipSend,500,DEBUG);
sendData(webpage,500,DEBUG);
// Lee el pin 13
int pin13 = digitalRead(13);
// Retorno de la lectura.
String retorno = “HTTP/1.1 200 OK\r\n Content-Type: text/html\r\n\r\n\r\n”;
if (pin13 == 1) {retorno += ” ON – Encendido”;}
if (pin13 == 0) {retorno += ” OFF – Apagado”;}
// ResponseCode App Inventor
cipSend = “AT+CIPSEND=”;
cipSend += connectionId;
cipSend += “,”;
cipSend += retorno.length();
cipSend +=”\r\n”;
sendData(cipSend,500,DEBUG);
sendData(retorno,500,DEBUG);
// Cierra la conexión
String closeCommand = “AT+CIPCLOSE=”;
closeCommand+=connectionId;
closeCommand+=”\r\n”;
sendData(closeCommand,500,DEBUG);
}
}
}
// Función para Enviar datos al Servidor.
String sendData(String command, const int timeout, boolean debug){
String response = “”;
esp8266.print(command); // Envía la información de command al servidor
long int time = millis();
while( (time+timeout) > millis())
{
while(esp8266.available())
{
// A response van los datos que regresan al servidor.
char c = esp8266.read(); // Va leyendo caracter a caracter.
response+=c;
// Consulta si en la información que regresa al servidor
// viene “GET /enci” o “GET /apag”
// Encenderá o apagará el LED13 del Arduino
if(response.indexOf(“GET /enci”) >0){
// Serial.print(“enciende”);
digitalWrite(13,HIGH);
}
if(response.indexOf(“GET /apag”) >0){
//Serial.print(“apaga”);
digitalWrite(13,LOW);
}
}
}
if(debug)
{
Serial.print(response);
}
return response;
}
// http://kio4.com/arduino/57modulowifi_2.htm
// Juan A. Villalpando
#include
SoftwareSerial esp8266(3,2);
// El TX del módulo al terminal 3 del Arduino.
// El RX del módulo al terminal 2 del Arduino.
int random_1 = 10;
int random_2 = 50;
String random_out = “0,0”;
String input_data = “”;
String fin = “”;
void setup(){
randomSeed(analogRead(A0));
Serial.begin(9600);
esp8266.begin(9600);
sendData(“AT+RST\r\n”,2000); // Borra la configuración que tenía el módulo
sendData(“AT+CWJAP=\”Nombre_de_tu_WiFi\”,\”Clave_de_tu_WiFi\”\r\n”, 2000);
delay(10000); // Espera un poco que conecte con el Router.
sendData(“AT+CWMODE=1\r\n”,1000); // Modo de cliente del Router.
sendData(“AT+CIFSR\r\n”,1000); // En el Serial Monitor aparece la IP del Servidor Web.
sendData(“AT+CIPMUX=1\r\n”,1000); // Multiples conexiones.
sendData(“AT+CIPSERVER=1,80\r\n”,1000); // Crea Servidor Web, puerto 80
}
void loop(){
if(esp8266.available()){
while(esp8266.available()){
char c = esp8266.read();
input_data += c;
if(input_data.indexOf(“genera”) > 0){
random_1 = random(10,50);
random_2 = random(50,99);
random_out = (String) random_1 + “,” + (String) random_2;
input_data = “”;
fin = “finalizado”;
}
}
}
// Return responseContent
if(fin == “finalizado”){
String header = “HTTP/1.1 200 OK\r\n Content-Type: text/html; \r\n”;
header += “Content-Length: “;
header += random_out.length();
header += “\r\nConnection: close\r\n\r\n”;
header += random_out;
sendData(“AT+CIPSEND=” + String(0) + “,” + header.length() + “\r\n”, 500);
sendData(header,1000);
// sendData (“AT+CIPCLOSE=” + String(0) + “\r\n”, 1000);
fin = “”;
}
}
// Envia datos al servidor y recibe la respuesta de los AT.
String sendData(String command, const int timeout){
String response = “”;
esp8266.print(command); // Envía la información de command al servidor
long int time = millis();
while( (time+timeout) > millis()){
while(esp8266.available()){
// A response van los datos que regresan al servidor.
char c = esp8266.read(); // Va leyendo caracter a caracter.
response+=c;
}
}
Serial.print(response);
return response; // Devuelve la respuesta del AT
}
It took me a while to figure out how the web server “knew” to work off IP address 192.168.1.9, but then I saw it in the COM24 log as the result of the AT+CIFSR command, and I imagine you read that output to get the IP address hard coded into the AI2 app.
Now we are going to carry out the previous example but we will create an Access Point (SoftAP – Soft Access Point), that is, the module will create a network independent from the Router, it will not be connected to the Router.
The code will create a network called ESP_81411C and the Web Server will have as IP: 192.168.4.1
For this we will change these lines…
void setup(){
randomSeed(analogRead(A0));
Serial.begin(9600);
esp8266.begin(9600);
sendData(“AT+RST\r\n”,2000); // Borra la configuración que tenía el módulo
// sendData(“AT+CWJAP=\”Nombre_de_tu_WiFi\”,\”Clave_de_tu_WiFi\”\r\n”, 2000);
// delay(10000); // Espera un poco que conecte con el Router.
sendData(“AT+CWMODE=2\r\n”,1000); // NOW IS A SOFT ACCESS POINT, MODE = 2
sendData(“AT+CIFSR\r\n”,1000); // En el Serial Monitor aparece la IP del Servidor Web. (192.168.4.1)
sendData(“AT+CIPMUX=1\r\n”,1000); // Multiples conexiones.
sendData(“AT+CIPSERVER=1,80\r\n”,1000); // Crea Servidor Web, puerto 80
}
We must change the IP in the code…
It is also convenient to install the application, since we are going to change the network and the MIT Companion will be in the Router’s network.
Once the application is installed, we go to the WiFi configuration and establish the ESP_81411C network
It is not necessary to put a Password since in this default configuration it does not have it.
If we wanted to change the name of the network and put a password on it, we would put this line:
3.- Remove the Serial Monitor, in case you have it open.
4.- We load this sketch in the IDE and upload it…
It is convenient from time to time to remove the power from the ESP8266 and put it back if it does not load well.
Summary
/*
* This sketch demonstrates how to set up a simple HTTP-like server.
* The server will set a GPIO pin depending on the request
* http://server_ip/gpio/0 will set the GPIO2 low,
* http://server_ip/gpio/1 will set the GPIO2 high
* server_ip is the IP address of the ESP8266 module, will be
* printed to Serial when the module is connected.
*/
#include
const char* ssid = “nombredemirouter”;
const char* password = “contraseñadelrouter”;
// Create an instance of the server
// specify the port to listen on as an argument
WiFiServer server(80);
void setup() {
Serial.begin(9600);
delay(1500);
// prepare GPIO2
pinMode(2, OUTPUT);
digitalWrite(2, LOW);
// Connect to WiFi network
Serial.println();
Serial.println();
Serial.print(“Connecting to “);
Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {
delay(500);
Serial.print(“.”);
}
Serial.println(“”);
Serial.println(“WiFi connected”);
// Start the server
server.begin();
Serial.println(“Server started”);
// Print the IP address
Serial.println(WiFi.localIP());
}
void loop() {
// Check if a client has connected
WiFiClient client = server.available();
if (!client) {
return;
}
// Wait until the client sends some data
Serial.println(“new client”);
while(!client.available()){
delay(1);
}
// Read the first line of the request
String req = client.readStringUntil(‘\r’);
Serial.println(req);
client.flush();
// Match the request
int val;
if (req.indexOf(“/gpio/0”) != -1)
val = 0;
else if (req.indexOf(“/gpio/1”) != -1)
val = 1;
else {
Serial.println(“invalid request”);
client.stop();
return;
}
// Set GPIO2 according to the request
digitalWrite(2, val);
client.flush();
// Prepare the response
String s = “HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n
\r\n
\r\nGPIO is now “;
s += (val)?”high”:”low”;
s += ”
\n”;
// Send the response to the client
client.print(s);
delay(1);
Serial.println(“Client disonnected”);
// The client will actually be disconnected
// when the function returns and ‘client’ object is detroyed
}
5.- When there is upload, remove the GPIO 0 to GND cable and open the Serial Monitor. Restart.
6.- Once the sketch is loaded we can remove the Arduino, connect an LED to the GPIO2 and feed the module with 3.3V
If you don’t have a 3.3V power supply, you can use the Arduino to power the module, note that you don’t need RX or TX.
In this project, you’re going to build an Android app using the MIT App Inventor software that allows you to control the ESP8266 GPIOs.
Creating the Android App with MIT App Inventor
MIT App Inventor is a drag-and-drop software that allows you to create a basic, but fully functional Android app within an hour or less.
Here’s how to edit the ESP8266 Controller app:
- Click here to download the .aia file
- Unzip the folder
- Go to MIT App Inventor
- Click the “Create Apps” button on the top right corner
- Go to the “Projects” tab and select “Import project (.aia)”
After importing the .aia file, you’ll be able to edit the app and see how the app was built.
Designer
The designer tab is where you can edit how the app looks. Feel free to change the text, change the colors, add buttons or add more features.
Blocks
The blocks section is where you can add what each button does and add logic to your app.
After finishing editing the app you can click the “Build” app tab and install the .apk file in your Android. I personally recommend that you first upload the app provided below to ensure that everything works as expected (later you can edit the app).
Uploading Code
You should see a window similar to the preceding Figure, follow these instructions to upload a Lua file:
- Connect your FTDI programmer to your computer
- Select your FTDI programmer port
- Press Open/Close
- Select NodeMCU+MicroPtyhon tab
- Create a new file called init.lua
- Press Save to ESP
Everything that you need to worry about or change is highlighted in red box.
Parts List
Here’s the hardware that you need to complete this project:
- 1x ESP8266 -read Best ESP8266 Wi-Fi Developmento Boards
- 1x FTDI programmer
- 2x LEDs
- 2x 220Ω Resistors
- 1x Breadboard
- 1x Android Phone – example OnePlus 5 (read review)
You can use the preceding links or go directly to MakerAdvisor.com/tools to find all the parts for your projects at the best price!
Installing the Android App
Follow these instructions to install the default app that I’ve created:
- Click here to download the .apk file
- Unzip the folder
- Move the .apk file to your Android phone
- Run the .apk file to install the app
Here’s how the ESP8266 Controller app looks when you to open it.
It’s very easy to configure. Click the button “Set IP Address” on the bottom of the screen and type your IP address (in my case 192.168.1.95).
You’re all set!
Now you can turn the GPIOs high and low with your smartphone. Go to the top of this page to see a video demonstration of this project.
Schematics (3.3V FTDI Programmer)
The schematics for this project are very straight forward. You only need to establish a serial communication between your FTDI programmer and your ESP8266. You can buy one FTDI programmer on eBay.
Wiring:
- RX -> TX
- TX -> RX
- CH_PD -> 3.3V
- VCC -> 3.3V
- GND -> GND
Code
Upload the following code into your ESP8266 using the preceding software. Your file should be named “init.lua“.
Don’t forget to add your network name (SSID) and password to the script below.
-- Rui Santos -- Complete project details at https://randomnerdtutorials.com wifi.setmode(wifi.STATION) wifi.sta.config("YOUR_NETWORK_NAME","YOUR_NETWORK_PASSWORD") print(wifi.sta.getip()) led1 = 3 led2 = 4 gpio.mode(led1, gpio.OUTPUT) gpio.mode(led2, gpio.OUTPUT) srv=net.createServer(net.TCP) srv:listen(80,function(conn) conn:on("receive", function(client,request) local buf = ""; buf = buf.."HTTP/1.1 200 OK\n\n" local _, _, method, path, vars = string.find(request, "([A-Z]+) (.+)?(.+) HTTP"); if(method == nil)then _, _, method, path = string.find(request, "([A-Z]+) (.+) HTTP"); end local _GET = {} if (vars ~= nil)then for k, v in string.gmatch(vars, "(%w+)=(%w+)&*") do _GET[k] = v end end if(_GET.pin == "ON1")then gpio.write(led1, gpio.HIGH); elseif(_GET.pin == "OFF1")then gpio.write(led1, gpio.LOW); elseif(_GET.pin == "ON2")then gpio.write(led2, gpio.HIGH); elseif(_GET.pin == "OFF2")then gpio.write(led2, gpio.LOW); end client:send(buf); client:close(); collectgarbage(); end) end)
Downloading ESPlorer IDE
I recommend using the ESPlorer IDE which is a program created by 4refr0nt to send commands to your ESP8266.
Follow these instructions to download and install ESPlorer IDE:
- Click here to download ESPlorer
- Unzip that folder
- Go to the main folder
- Run “ESPlorer.jar” file
- Open the ESPlorer IDE
Tạo App Android bằng MIT APP INVENTOR
Để có thể tạo một App Android bằng MIT app inventor chúng truy cập vào link để tạo dự án nhé: http://appinventor.mit.edu
Bước đầu tiên các bạn Click vào Projects chọn “Start new project” để tạo một dự án mới.
Tiếp theo chúng ta cần đặt tên cho dự án.
Ở bên tay trái màn mình các bạn, chúng ta Click vào Button dùng để bật tắt thiết bị. Ở đây mình sẽ chọn 2 nút và đặt là “ON” và “OFF”.
Để có thể chỉnh sửa các thông số của Button các bạn Click vào và nó sẽ xổ ra các trường thông tin. Ở đây các bạn có thể đặt lại tên cho Button ở phần Text …
Tiếp theo, các bạn chọn mục Connectivity và cho Web và kéo thả vào Viewer nhé.
Sau khi đã cấu hình cho các Button và Web ta chọn vào Block để chuyển qua lập trình kéo thả Block.
Click vào “Button 1” chọn phần mà mình đã khoanh đỏ và kéo chúng vào vùng lập trình.
Tiếp tục, ta chọn “Web1” và kéo Block đã được đánh dấu. Ở phần này chúng ta sẽ cấu hình địa chỉ IP Web.
Chọn mục “Text” kéo block được khoanh đỏ vào vùng lập trình.
Tiếp theo ở mục Web1 chọn Block “Call Web.Get”.
Để biết được địa chỉ IP của NodeMCU ESP8266 ta cần nạp Code và bật Monitor lên xem nhé. Code mình để cuối bài viết các bạn tải về và
thực hiện nhé. Ở đây địa chỉ IP của mình là: 192.168.88.106
- http://192.168.88.106/gpio/1
- http://192.168.88.106/gpio/0
Các bạn kéo thả các Block lại với nhau giống như trên màn hình nhé.
Để có thể tải dự án về điện thoại, các bạn vào mục Build chọn App (project QR code for apk).
Quét mã QR code xuất hiện trên màn hình. Và các bạn tiến hành cài đặt App vào điện thoại nhé.
Như vậy là đã xong các bạn có thể điều khiển bật tắt thiết bị trên App điện thoại rồi.
First, watch the video demonstration
To learn more about the ESP8266 use the following tutorials as a reference:
- Getting started with the ESP8266
- ESP8266 web server with NodeMCU
- Flashing NodeMCU firmware
- ESP8266 troubleshooting guide
If you like the ESP and you want to do more projects you can download my eBook Home Automation using ESP8266 here.
Let’s get started!
Điều khiển thiết bị bằng MIT App Inventor sử dụng NodeMCU ESP8266
Trong nội dung bài viết hôm nay mình sẽ giới thiệu với các bạn một chủ đề mới cách có thể tạo một App Android trên MIT App Inventor một cách nhanh chóng mà không cần phải biết về lập trình nhiều.
Bài viết sẽ hướng dẫn các bạn cách tạo một App đơn giản và điều khiển các thiết bị trong gia đình thông qua NodeMCU ESP8266. Để có thể nắm rõ hơn các bạn có thể tìm đọc các bài viết liên quan đến dự án.
Taking It Further
This is a basic example that shows you how easy it is to integrate an Android app with the ESP8266. You can take this example and modify it.
You could add multiple screens to the app, so you can other ESPs or add buttons to control more GPIOs.
Do you have any questions? Leave a comment down below!
Thanks for reading. If you like this post probably you might like my next ones, so please support me by subscribing my blog.
I want to send temperature sensor data whenever a button named get temperature is pressed on app it should display the current temperature value. I am able to see new client request whenever I click the button and also Arduino serial print but it does not appear on the app text box… Please help
Welcome,
Most of the devices does not have the temperature sensor. See the documentation.
A sensor component that can measure the ambient (external) temperature. Most Android devices do not have this sensor.
They’re using an Arduino Temperature Sensor
Oh, I thought it is an Android sensor
This may help you:
Thanks @NishyanthKumarbut i m using Wifi instead of bluetooth … Here is the sample blocks which i want to use please ignore the cross marks as this is just an example. What i want to do is there is a button on my app which is getTemp when i press that button it sends new client request to esp8266 and whatever output in the form of text i get on serial monitor of arduino should get updated on the text box (temp) located just above the button.ill also provide sample arduino code here i have given constant temp example but it is a variable in my case and its changing
#include
const char* ssid = “JioFi2_C4FFC1”;const char* password = “######”;WiFiServer server(80);
void setup() {Serial.begin(38400);
Serial.print("Connecting to "); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(100); //500 Serial.print("."); } Serial.println(""); Serial.println("Wifi Connected"); Serial.println("Server started "); Serial.println(WiFi.localIP());
server.begin();
}void loop() {string temp=38*cWiFiClient client = server.available();if (!client){return;}Serial.println(“new client”);while(!client.available()){delay(1);}String req = client.readStringUntil(‘\r’);Serial.println(req);
if (req.indexOf("/getTemp")!=-1) { client.println(temp); Serial.println(temp); } String web = "HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n"; client.print(web); client.flush();
Ah, sorry. Didn’t see that.I’m not the best at Arduino (I don’t know C++), but @Juan_Antonio and @NissanCedric are the go-to people to ask in its terms inside of this Community.
Check
Thanks @Juan_AntonioI have already gone through these two links but the problem with in my case is that I want to receive the text that obtained on serial monitor of Arduino but these 2 examples will send data from to esp device do I need to make any change in Arduino code or in app blocks to receive text from esp device to app using wifi.. … Please help
Here many examples with ESP32
Check your phone to see if its web browser can reach that 192.168… address.
You may need to switch from your cell service’s net access to local WiFi access to get there.
thanks for your support @Juan_Antonio I tried your example of analog read from potentiometer… but in my case it displays “Error1101: unable to connect to specific URL http://192.168.1.184/temp”i made the same program as like yours but to get temperature data in form of stringthe only difference here is :this is from your code-if (req.indexOf(“consulta”) != -1){valor = analogRead(Ent_Anilogica);valor_map = map(valor, 0, 4095, 0, 330);Serial.println(valor);}
this is from my code-if (req.indexOf(“/getTemp”)!=-1){client.println(temp);Serial.println(temp);}
I can’t understand why its not working please help.
@Sneha_JangidTry
if(req.indexOf(“getTemp”)!=-1)
@Juan_Antonio did but same error
@ABG checked but not working
#include
const char* ssid = “XXXXXXX”;const char* password = “XXXXXXXXXXXX”;
String temperature = “34”;
WiFiServer server(80);
void setup() {Serial.begin(115200);
// Conecta a la red wifi.Serial.println();Serial.print(“Conectando con “);Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL_CONNECTED) {delay(500);Serial.print(“.”);}Serial.println(“Conectado con WiFi.”);
// Inicio del Servidor web.server.begin();Serial.println(“Servidor web iniciado.”);
// Esta es la IPSerial.print(“Esta es la IP para conectar: “);Serial.print(“http://”);Serial.print(WiFi.localIP());}
void loop() {// Consulta si se ha conectado algún cliente.WiFiClient client = server.available();if (!client) {return;}
Serial.print(“Nuevo cliente: “);Serial.println(client.remoteIP());
// Espera hasta que el cliente envíe datos.while(!client.available()){ delay(1); }
/////////////////////////////////////////////////////// Lee la información enviada por el cliente.String req = client.readStringUntil(‘\r’);Serial.println(req);
// Realiza la petición del cliente.if (req.indexOf(“consulta”) != -1){temperature = String(random(1,100));Serial.println(temperature);delay(10);}
//////////////////////////////////////////////// Página WEB. ////////////////////////////client.println(“HTTP/1.1 200 OK”);client.println(“Content-Type: text/html”);client.println(“”); // Importante.
client.println(temperature);
Serial.print(“Cliente desconectado: “);Serial.println(client.remoteIP());// client.flush();}
Here with a potentiometer:http://kio4.com/arduino/347B_esp8266_AI2_Potenciometro.htm
@Sneha_Jangid did it work ?
Điều khiển esp 8266 bằng app inventor
Giới thiệu sản phẩm
Source hình ảnh:Arduinokit.vnĐể điều khiển ESP8266 qua App Inventor, bạn có thể sử dụng kết nối Wi-Fi và gửi dữ liệu từ ứng dụng của mình đến ESP8266. Dưới đây là các bước cơ bản:### Bước 1: Chuẩn bị Thiết Bị và Môi Trường Lập Trình:1. **ESP8266 Board:**- Kết nối ESP8266 với máy tính của bạn và chọn cổng COM chính xác.- Sử dụng Arduino IDE để lập trình ESP8266.2. **App Inventor:**- Truy cập trang web App Inventor (https://appinventor.mit.edu/).- Đăng nhập hoặc tạo một tài khoản mới.### Bước 2: Lập Trình ESP8266:1. **Lập Trình WiFi:**- Sử dụng thư viện ESP8266WiFi để kết nối ESP8266 với mạng Wi-Fi.- Cấu hình SSID và mật khẩu Wi-Fi trong mã.2. **Web Server:**- Tạo một web server trên ESP8266 để lắng nghe yêu cầu từ ứng dụng.3. **Xử Lý Dữ Liệu:**- Xử lý yêu cầu từ App Inventor và thực hiện các hành động tương ứng (bật/tắt đèn, vv.).### Bước 3: Tạo Ứng Dụng App Inventor:1. **Tạo Giao Diện:**- Sử dụng App Inventor để thiết kế giao diện ứng dụng của bạn.- Thêm các thành phần như Button, Label, TextBox, vv.2. **Kết Nối WiFi:**- Sử dụng thành phần “WiFi” trong App Inventor để thiết lập kết nối Wi-Fi.- Cấu hình SSID và mật khẩu Wi-Fi.3. **Gửi Yêu Cầu đến ESP8266:**- Sử dụng thành phần “Web” để gửi yêu cầu đến ESP8266 thông qua địa chỉ IP của nó.4. **Xử Lý Phản Hồi:**- Xử lý phản hồi từ ESP8266, ví dụ: thông báo trạng thái thành công hay thất bại.### Bước 4: Lập Trình Ứng Dụng:1. **Xử Lý Sự Kiện Nút Ấn:**- Lập trình sự kiện khi người dùng nhấn vào các nút trên ứng dụng.2. **Gửi Yêu Cầu:**- Khi nút được nhấn, sử dụng thành phần “Web” để gửi yêu cầu đến ESP8266.3. **Xử Lý Kết Quả:**- Xử lý kết quả từ ESP8266, ví dụ: cập nhật trạng thái trên giao diện ứng dụng.### Bước 5: Kiểm Tra và Sửa Lỗi:1. **Kiểm Tra Kết Nối:**- Đảm bảo rằng ESP8266 và ứng dụng của bạn có thể kết nối với nhau qua mạng Wi-Fi.2. **Kiểm Tra Lỗi Lập Trình:**- Kiểm tra lỗi trong mã lập trình của cả ESP8266 và App Inventor.
Để điều khiển ESP8266 qua App Inventor, bạn có thể sử dụng kết nối Wi-Fi và gửi dữ liệu từ ứng dụng của mình đến ESP8266. Dưới đây là các bước cơ bản:
### Bước 1: Chuẩn bị Thiết Bị và Môi Trường Lập Trình:
1. **ESP8266 Board:**
– Kết nối ESP8266 với máy tính của bạn và chọn cổng COM chính xác.
– Sử dụng Arduino IDE để lập trình ESP8266.
2. **App Inventor:**
– Truy cập trang web App Inventor (https://appinventor.mit.edu/).
– Đăng nhập hoặc tạo một tài khoản mới.
### Bước 2: Lập Trình ESP8266:
1. **Lập Trình WiFi:**
– Sử dụng thư viện ESP8266WiFi để kết nối ESP8266 với mạng Wi-Fi.
– Cấu hình SSID và mật khẩu Wi-Fi trong mã.
2. **Web Server:**
– Tạo một web server trên ESP8266 để lắng nghe yêu cầu từ ứng dụng.
3. **Xử Lý Dữ Liệu:**
– Xử lý yêu cầu từ App Inventor và thực hiện các hành động tương ứng (bật/tắt đèn, vv.).
### Bước 3: Tạo Ứng Dụng App Inventor:
1. **Tạo Giao Diện:**
– Sử dụng App Inventor để thiết kế giao diện ứng dụng của bạn.
– Thêm các thành phần như Button, Label, TextBox, vv.
2. **Kết Nối WiFi:**
– Sử dụng thành phần “WiFi” trong App Inventor để thiết lập kết nối Wi-Fi.
– Cấu hình SSID và mật khẩu Wi-Fi.
3. **Gửi Yêu Cầu đến ESP8266:**
– Sử dụng thành phần “Web” để gửi yêu cầu đến ESP8266 thông qua địa chỉ IP của nó.
4. **Xử Lý Phản Hồi:**
– Xử lý phản hồi từ ESP8266, ví dụ: thông báo trạng thái thành công hay thất bại.
### Bước 4: Lập Trình Ứng Dụng:
1. **Xử Lý Sự Kiện Nút Ấn:**
– Lập trình sự kiện khi người dùng nhấn vào các nút trên ứng dụng.
2. **Gửi Yêu Cầu:**
– Khi nút được nhấn, sử dụng thành phần “Web” để gửi yêu cầu đến ESP8266.
3. **Xử Lý Kết Quả:**
– Xử lý kết quả từ ESP8266, ví dụ: cập nhật trạng thái trên giao diện ứng dụng.
### Bước 5: Kiểm Tra và Sửa Lỗi:
1. **Kiểm Tra Kết Nối:**
– Đảm bảo rằng ESP8266 và ứng dụng của bạn có thể kết nối với nhau qua mạng Wi-Fi.
2. **Kiểm Tra Lỗi Lập Trình:**
– Kiểm tra lỗi trong mã lập trình của cả ESP8266 và App Inventor.
Hình ảnh sản phẩm
Thông tin tác giả
Đỗ Tấn Phát 12 tuổi
Địa vị cộng đồng: Nông dân
Sản phẩm cùng tác giả
Sản phẩm liên quan
Không có sản phẩm nào
I saw several projects that integrate APP Inventor with Arduino,
unfortunately I only found projects where data from arduino sensors
are replicated on the mobile screen or actuators are turned on or off.
Would anyone know of an example where the mobile APP can pass a value
to an Arduino variable?
For example, turning on a lamp if the level of the photoresistor is
less than x, and the value of x is can be changed on the application
screen (typing the value or using a slider, etc.)
If you would like to have full control over ESP, send and read data. Also be able to control ESP remotely, e.g. from work, read about the MQTT protocol. There is a nice MQTT extension for appinvwntor and lots of libraries for arduino. There are also many free mqtt brokers (servers) available. You can also create your own server, e.g. using the android application. This way you can also control esp from e.g. the google assistant.
Here is English translated Wifi Led control project, But I am still trying to write correct code for Nodemcu
Also I will have to findout How to upload LEDWifi_ESP_BIJ_1Aia Project file here for community
Hello friends,
1.- Send message and view it on an LCD screen.
1.- You write a message in TexBox1 and it is sent by WiFi to ESP8266, that message is shown on the LCD screen.2.- If you write on5, off5, on6, off6, LEDs 5 or 6 turn on/off.
``` // Juan A. Villalpando. // KIO4.COM // Send a message // from App Inventor #include
const char* ssid = "Name_Net_WiFi"; const char* password = "Password_WiFi"; // Static IP. IPAddress local_IP(192, 168, 1, 12); IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 255, 0); #define LED5 D5 // LED in pin 5 #define LED6 D6 // LED in pin 6 #includeint columns = 16; int rows = 2; LiquidCrystal_I2C lcd(0x27, columns, rows); // LiquidCrystal_I2C lcd(0x3F, columns, rows); WiFiServer server(80); void setup() { Serial.begin(115200); pinMode(LED5, OUTPUT); pinMode(LED6, OUTPUT); lcd.init(); lcd.backlight(); // Set Static IP. WiFi.config(local_IP, gateway, subnet); // Connection to WiFi Serial.println(); Serial.print("Connecting with "); Serial.println(ssid); WiFi.begin(ssid, password); while (WiFi.status() != WL_CONNECTED) { delay(500); Serial.print("."); } Serial.println("Connected with WiFi."); // Start WebServer. server.begin(); Serial.println("WebServer started."); // This is IP of WebServer Serial.print("IP of WebServer: "); Serial.print("http://"); Serial.print(WiFi.localIP()); } void loop() { // Check if a client has connected. WiFiClient client = server.available(); if (!client) { return; } Serial.print("New client: "); Serial.println(client.remoteIP()); // Wait for the client to send data. while(!client.available()){ delay(1); } ///////////////////////////////////////////////////// // Read information of client. String req = client.readStringUntil('\r'); Serial.println(req); req.replace("+", " "); // Spaces without + req.replace(" HTTP/1.1", ""); // this delete HTTP/1.1 req.replace("GET /", ""); // this delete GET / lcd.clear(); // Borra pantalla. lcd.setCursor(0, 0); // Start cursor lcd.print("Mensaje"); lcd.setCursor(0,1); // Next row. lcd.print(req); // Make the customer's request. if (req.indexOf("on5") != -1) {digitalWrite(LED5, HIGH);} if (req.indexOf("off5") != -1){digitalWrite(LED5, LOW);} if (req.indexOf("on6") != -1) {digitalWrite(LED6, HIGH);} if (req.indexOf("off6") != -1){digitalWrite(LED6, LOW);} ////////////////////////////////////////////// // Página WEB. //////////////////////////// client.println("HTTP/1.1 200 OK"); client.println("Content-Type: text/html"); client.println(""); // Important. Serial.print("Client disconnected: "); Serial.println(client.remoteIP()); client.flush(); client.stop(); } ```
-
In this code I use static IP.
-
Utilizo:
Regards,http://kio4.com/arduino/345_esp8266_AI2_LCD.htm
With NodeMcu:https://groups.google.com/forum/#!searchin/mitappinventortest/esp8266$20sends$20message|sort:date/mitappinventortest/t9DJ8U0KE6Y/18orp_xgBwAJ
Sơ đồ đấu nối
Các linh kiện cần thiết cho dự án
Tên linh kiện | Số lượng | Shopee |
NodeMCU ESP8266 | Mua ngay | |
Dây cắm (Cái – Cái) | Mua ngay | |
Module Relay 5V | Mua ngay |
Keywords searched by users: app inventor arduino esp8266
Categories: Tóm tắt 89 App Inventor Arduino Esp8266
See more here: kientrucannam.vn
See more: https://kientrucannam.vn/vn/