Search found 6 matches
- Sun Oct 22, 2017 10:34 pm
- Forum: ESP32 Arduino
- Topic: Simple ESP32 WebSocket client example?
- Replies: 7
- Views: 40448
Re: Simple ESP32 WebSocket client example?
HI Yes, I had to comment out some of the duplicate references. If i remember correctly it was for SHA and Hash references in header files.
- Thu Oct 12, 2017 2:10 pm
- Forum: ESP32 Arduino
- Topic: Simple ESP32 WebSocket client example?
- Replies: 7
- Views: 40448
Re: Simple ESP32 WebSocket client example?
Here is the library I used...
https://github.com/morrissinger/ESP8266-Websocket
https://github.com/morrissinger/ESP8266-Websocket
- Thu Oct 12, 2017 2:04 pm
- Forum: ESP32 Arduino
- Topic: Simple ESP32 WebSocket client example?
- Replies: 7
- Views: 40448
Re: Simple ESP32 WebSocket client example?
Hi Guys, for what its worth, here is my code. It communciates with my server just fine. Now I just have to work out how to do this in SSL. :lol:
#include <WiFi.h>
#include <WiFiClient.h>
#include <WebSocketClient.h>
#include <Preferences.h>
//eeprom
Preferences pref;
byte mac[6];
char ...
#include <WiFi.h>
#include <WiFiClient.h>
#include <WebSocketClient.h>
#include <Preferences.h>
//eeprom
Preferences pref;
byte mac[6];
char ...
- Wed Oct 11, 2017 1:10 am
- Forum: ESP32 Arduino
- Topic: Simple ESP32 WebSocket client example?
- Replies: 7
- Views: 40448
Re: Simple ESP32 Socket as a client example
I finally got a library that works and have got it working fine now.
- Mon Oct 09, 2017 10:08 pm
- Forum: ESP32 Arduino
- Topic: Simple ESP32 WebSocket client example?
- Replies: 7
- Views: 40448
Re: Simple ESP32 Socket as a client example
I think I must have searched the entire web now...I cannot find a SINGLE example of an ESP32 acting as a websockets client.
This is what I have done so far and have had limited success:
To recap:
I have a asp iHttphandler residing within IIS. It waits for incoming socket requests and handles ...
This is what I have done so far and have had limited success:
To recap:
I have a asp iHttphandler residing within IIS. It waits for incoming socket requests and handles ...
- Sun Oct 08, 2017 10:23 pm
- Forum: ESP32 Arduino
- Topic: Simple ESP32 WebSocket client example?
- Replies: 7
- Views: 40448
Simple ESP32 WebSocket client example?
HI Guys
I have been bashing my head all day with this sockets stuff.
What I would like is for someone to show me how to achieve a simple sockets app that has the ESP32 as a client and connecting to a server. BUT, here is my issue....gefore I show you how far I have got with the Arduino code, let me ...
I have been bashing my head all day with this sockets stuff.
What I would like is for someone to show me how to achieve a simple sockets app that has the ESP32 as a client and connecting to a server. BUT, here is my issue....gefore I show you how far I have got with the Arduino code, let me ...