Skip to content

Instantly share code, notes, and snippets.

View CaptionAtom's full-sized avatar

Faizan Khan CaptionAtom

View GitHub Profile
@mthri
mthri / SocketClient.ino
Last active August 29, 2024 14:05
esp8266 socket client and python socket server
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
const uint16_t port = 8585;
const char *host = "SERVER-IP";
WiFiClient client;
void setup()
{
Serial.begin(115200);