Files

107 lines
2.4 KiB
Arduino
Raw Permalink Normal View History

2015-05-24 15:40:47 +02:00
/*
* WebSocketClient.ino
*
* Created on: 24.05.2015
*
*/
#include <Arduino.h>
2018-02-07 17:28:17 +01:00
#include <ESP8266WiFi.h>
#include <ESP8266WiFiMulti.h>
2018-02-06 21:10:29 +01:00
2015-05-24 15:40:47 +02:00
#include <WebSocketsClient.h>
2018-02-06 21:36:44 +01:00
2015-05-24 15:40:47 +02:00
#include <Hash.h>
2018-02-07 17:28:17 +01:00
ESP8266WiFiMulti WiFiMulti;
2015-05-24 15:40:47 +02:00
WebSocketsClient webSocket;
2015-07-20 19:29:37 +02:00
#define USE_SERIAL Serial1
2017-03-06 15:07:20 -05:00
void webSocketEvent(WStype_t type, uint8_t * payload, size_t length) {
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
switch(type) {
case WStype_DISCONNECTED:
USE_SERIAL.printf("[WSc] Disconnected!\n");
break;
case WStype_CONNECTED: {
USE_SERIAL.printf("[WSc] Connected to url: %s\n", payload);
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
// send message to server when Connected
webSocket.sendTXT("Connected");
}
break;
case WStype_TEXT:
USE_SERIAL.printf("[WSc] get text: %s\n", payload);
2015-05-24 15:40:47 +02:00
2015-11-26 15:19:07 +01:00
// send message to server
// webSocket.sendTXT("message here");
2017-08-19 21:16:07 +02:00
break;
case WStype_BIN:
USE_SERIAL.printf("[WSc] get binary length: %u\n", length);
hexdump(payload, length);
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
// send data to server
// webSocket.sendBIN(payload, length);
break;
2019-05-30 20:15:03 +02:00
case WStype_PING:
// pong will be send automatically
USE_SERIAL.printf("[WSc] get ping\n");
break;
case WStype_PONG:
// answer to a ping we send
USE_SERIAL.printf("[WSc] get pong\n");
break;
}
2015-05-24 15:40:47 +02:00
}
void setup() {
2017-08-19 21:16:07 +02:00
// USE_SERIAL.begin(921600);
USE_SERIAL.begin(115200);
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
//Serial.setDebugOutput(true);
USE_SERIAL.setDebugOutput(true);
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
USE_SERIAL.println();
USE_SERIAL.println();
USE_SERIAL.println();
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
for(uint8_t t = 4; t > 0; t--) {
USE_SERIAL.printf("[SETUP] BOOT WAIT %d...\n", t);
USE_SERIAL.flush();
delay(1000);
}
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
WiFiMulti.addAP("SSID", "passpasspass");
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
//WiFi.disconnect();
while(WiFiMulti.run() != WL_CONNECTED) {
delay(100);
}
2015-05-24 15:40:47 +02:00
2017-08-19 21:16:07 +02:00
// server address, port and URL
webSocket.begin("192.168.0.123", 81, "/");
// event handler
webSocket.onEvent(webSocketEvent);
// use HTTP Basic Authorization this is optional remove if not needed
webSocket.setAuthorization("user", "Password");
// try ever 5000 again if connection has failed
webSocket.setReconnectInterval(5000);
2018-10-24 08:17:37 +02:00
// start heartbeat (optional)
// ping server every 15000 ms
// expect pong from server within 3000 ms
// consider connection disconnected if pong is not received 2 times
webSocket.enableHeartbeat(15000, 3000, 2);
2015-05-24 15:40:47 +02:00
}
void loop() {
2017-08-19 21:16:07 +02:00
webSocket.loop();
2015-05-24 15:40:47 +02:00
}