Skip to content

Instantly share code, notes, and snippets.

View mobizt's full-sized avatar
🦴
Focusing

Suwatchai K. mobizt

🦴
Focusing
  • The Kingdom of Thailand
View GitHub Profile
@mobizt
mobizt / Large_File_Web_Server_Test.ino
Last active May 15, 2021 01:40
This example sketch shows how to use webserver to send large data to client (500 kB jpeg image)
#include <Arduino.h>
#include <ESP8266WiFi.h>
#include <WiFiClient.h>
#include <ESP8266WebServer.h>
#include <ESP8266mDNS.h>
#include "image.h"
const char *ssid = "your wifi ssid";
const char *password = "your wifi password";
@mobizt
mobizt / TTGO_T8_V1.8_MicroSD_Test.ino
Created April 14, 2019 08:18
TTGO T8 V1.8 micro SD Card Test
//T8 V1.8 ESP32-WROVER 4MB PSRAM micro SD Test
#include <SD.h>
File dir;
void setup()
{