Skip to content

Instantly share code, notes, and snippets.

View sidd-kishan's full-sized avatar

Aayush Deo sidd-kishan

View GitHub Profile
@sidd-kishan
sidd-kishan / SocketClient.ino
Last active April 28, 2022 08:24 — forked from mthri/SocketClient.ino
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);