Explicando o Código em partes
Código Completo 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138 #include <Arduino.h>
#include <ESP8266WiFi.h>
#include <WebSocketsServer.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <Hash.h>
#include <Servo.h> // Include the library
Servo servo1 ; // Create the Servo and name it "servo1"
Servo servo2 ; // Create the Servo and name it "servo2"
Servo servo3 ; // Create the Servo and name it "servo3"
Servo servo4 ; // Create the Servo and name it "servo4"
#define SERVO1 D0
#define SERVO2 D2
#define SERVO3 D3
#define SERVO4 D4
#define USE_SERIAL Serial
ESP8266WebServer server ( 80 );
WebSocketsServer webSocket = WebSocketsServer ( 81 );
String website = "<html><head><script>"
"var connection = new WebSocket('ws://' + location.hostname + ':81/', ['arduino']);"
"connection.onopen = function(){ connection.send('Connected on ' + new Date()); };"
"connection.onerror = function (error){ console.log('WebSocket Error ', error); };"
"connection.onmessage = function(e){console.log('Server: ', e.data); };"
"function sendValue(){"
"var value = parseInt(document.getElementById('r').value).toString(16);"
"if (value.length < 2){value = '0' + value;}"
"color = document.getElementById('color').value;"
"var command = '$' + color + value;"
"console.log('Command: ' + command);"
"connection.send(command);}</script></head>"
"<body>LED Control:<br/><select id= \" color \" >"
"<option value= \" R \" >Red</option><option value= \" G \" >Green</option><option value= \" B \" >Blue</option><option value= \" W \" >White</option>"
"</select><br/><br/>Intensity: <br/> <input id= \" r \" type= \" range \" min= \" 0 \" max= \" 255 \" step= \" 1 \" oninput= \" sendValue(); \" /><br/></body></html>" ;
void webSocketEvent ( uint8_t num , WStype_t type , uint8_t * payload , size_t length ) {
switch ( type ) {
case WStype_DISCONNECTED :
USE_SERIAL . printf ( "[%u] Disconnected! \n " , num );
break ;
case WStype_CONNECTED : {
IPAddress ip = webSocket . remoteIP ( num );
USE_SERIAL . printf ( "[%u] Connected from %d.%d.%d.%d url: %s \n " , num , ip [ 0 ], ip [ 1 ], ip [ 2 ], ip [ 3 ], payload );
// send message to client
webSocket . sendTXT ( num , "Connected" );
}
break ;
case WStype_TEXT :
USE_SERIAL . printf ( "[%u] got Text: %s \n " , num , payload );
if ( payload [ 0 ] == '$' ) {
// decode rgb data
uint8_t value = ( uint8_t ) strtol (( const char * ) & payload [ 2 ], NULL , 16 );
USE_SERIAL . println ( value );
if ( payload [ 1 ] == 'R' ){
servo1 . write ( value );
} else if ( payload [ 1 ] == 'G' ){
servo2 . write ( value );
} else if ( payload [ 1 ] == 'B' ){
servo3 . write ( value );
} else if ( payload [ 1 ] == 'W' ){
servo4 . write ( value );
}
}
break ;
}
}
void setup () {
USE_SERIAL . begin ( 115200 );
//USE_SERIAL.setDebugOutput(true);
USE_SERIAL . println ();
USE_SERIAL . println ();
USE_SERIAL . println ();
for ( uint8_t t = 4 ; t > 0 ; t -- ) {
USE_SERIAL . printf ( "[SETUP] BOOT WAIT %d... \n " , t );
USE_SERIAL . flush ();
delay ( 300 );
}
servo1 . attach ( SERVO1 );
servo2 . attach ( SERVO2 );
servo3 . attach ( SERVO3 );
servo4 . attach ( SERVO4 );
servo1 . write ( 90 );
servo2 . write ( 90 );
servo3 . write ( 90 );
servo4 . write ( 90 );
WiFi . softAP ( "nomeWiFi" );
IPAddress myIP = WiFi . softAPIP ();
Serial . print ( "AP IP address: " );
Serial . println ( myIP );
// start webSocket server
webSocket . begin ();
webSocket . onEvent ( webSocketEvent );
if ( MDNS . begin ( "esp8266" )) {
USE_SERIAL . println ( "MDNS responder started" );
}
// handle index
server . on ( "/" , []() {
// send index.html
server . send ( 200 , "text/html" , website );
});
server . begin ();
// Add service to MDNS
MDNS . addService ( "http" , "tcp" , 80 );
MDNS . addService ( "ws" , "tcp" , 81 );
}
void loop () {
webSocket . loop ();
server . handleClient ();
}
Importando as bibliotecas no código
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <WebSocketsServer.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include <Hash.h>
#include <Servo.h> // Include the library
Configurando e Nomeando os Servo Motores
Servo servo1 ; // Create the Servo and name it "servo1"
Servo servo2 ; // Create the Servo and name it "servo2"
Servo servo3 ; // Create the Servo and name it "servo3"
Servo servo4 ; // Create the Servo and name it "servo4"
Definindo os pinos de controle de cada Servo Motor
#define SERVO1 D0
#define SERVO2 D2
#define SERVO3 D3
#define SERVO4 D4
Seta uso de Comunicação Serial
#define USE_SERIAL Serial
Chamada para gerar o Web Server
E define a porta que será usada
ESP8266WebServer server ( 80 );
WebSocketsServer webSocket = WebSocketsServer ( 81 );
Template da página Web Gerada
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40 String website = "<html><head><script>"
"var connection = new WebSocket('ws://' + location.hostname + ':81/', ['arduino']);"
"connection.onopen = function(){ connection.send('Connected on ' + new Date()); };"
"connection.onerror = function (error){ console.log('WebSocket Error ', error); };"
"connection.onmessage = function(e){console.log('Server: ', e.data); };"
"function sendValue(){"
"var value = parseInt(document.getElementById('r').value).toString(16);"
"if (value.length < 2){value = '0' + value;}"
"color = document.getElementById('color').value;"
"var command = '$' + color + value;"
"console.log('Command: ' + command);"
"connection.send(command);}</script></head>"
"<body>LED Control:<br/><select id= \" color \" >"
"<option value= \" R \" >Red</option><option value= \" G \" >Green</option><option value= \" B \" >Blue</option><option value= \" W \" >White</option>"
"</select><br/><br/>Intensity: <br/> <input id= \" r \" type= \" range \" min= \" 0 \" max= \" 255 \" step= \" 1 \" oninput= \" sendValue(); \" /><br/></body></html>" ;
Cria a função que trata os dados recebidos do celular
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79 void webSocketEvent ( uint8_t num , WStype_t type , uint8_t * payload , size_t length ) {
switch ( type ) {
case WStype_DISCONNECTED :
USE_SERIAL . printf ( "[%u] Disconnected! \n " , num );
break ;
case WStype_CONNECTED : {
IPAddress ip = webSocket . remoteIP ( num );
USE_SERIAL . printf ( "[%u] Connected from %d.%d.%d.%d url: %s \n " , num , ip [ 0 ], ip [ 1 ], ip [ 2 ], ip [ 3 ], payload );
// send message to client
webSocket . sendTXT ( num , "Connected" );
}
break ;
case WStype_TEXT :
USE_SERIAL . printf ( "[%u] got Text: %s \n " , num , payload );
if ( payload [ 0 ] == '$' ) {
// decode rgb data
uint8_t value = ( uint8_t ) strtol (( const char * ) & payload [ 2 ], NULL , 16 );
USE_SERIAL . println ( value );
if ( payload [ 1 ] == 'R' ){
servo1 . write ( value );
} else if ( payload [ 1 ] == 'G' ){
servo2 . write ( value );
} else if ( payload [ 1 ] == 'B' ){
servo3 . write ( value );
} else if ( payload [ 1 ] == 'W' ){
servo4 . write ( value );
}
}
break ;
}
}
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95 void setup () {
USE_SERIAL . begin ( 115200 );
//USE_SERIAL.setDebugOutput(true);
USE_SERIAL . println ();
USE_SERIAL . println ();
USE_SERIAL . println ();
for ( uint8_t t = 4 ; t > 0 ; t -- ) {
USE_SERIAL . printf ( "[SETUP] BOOT WAIT %d... \n " , t );
USE_SERIAL . flush ();
delay ( 300 );
}
Inicializa os Servo Motores e posiciona eles em 90°
97
98
99
100
101
102
103
104
105 servo1 . attach ( SERVO1 );
servo2 . attach ( SERVO2 );
servo3 . attach ( SERVO3 );
servo4 . attach ( SERVO4 );
servo1 . write ( 90 );
servo2 . write ( 90 );
servo3 . write ( 90 );
servo4 . write ( 90 );
Define o nome da rede para "nomeWiFi" e o que será feito no loop do WebSocket
Caso queira alterar o nome da rede para não gerar conflito com outros robozitos, alterar a linha abaixo.
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133 WiFi . softAP ( "nomeWiFi" );
IPAddress myIP = WiFi . softAPIP ();
Serial . print ( "AP IP address: " );
Serial . println ( myIP );
// start webSocket server
webSocket . begin ();
webSocket . onEvent ( webSocketEvent );
if ( MDNS . begin ( "esp8266" )) {
USE_SERIAL . println ( "MDNS responder started" );
}
// handle index
server . on ( "/" , []() {
// send index.html
server . send ( 200 , "text/html" , website );
});
server . begin ();
// Add service to MDNS
MDNS . addService ( "http" , "tcp" , 80 );
MDNS . addService ( "ws" , "tcp" , 81 );
}
Inicia o Loop
void loop () {
webSocket . loop ();
server . handleClient ();
}