Skip to content

Instantly share code, notes, and snippets.

View myselfgautham's full-sized avatar
:electron:
Thinking Atomically

Gautham Krishna Vinayachandran myselfgautham

:electron:
Thinking Atomically
View GitHub Profile
@myselfgautham
myselfgautham / ESP32CameraWithButtons.ino
Last active April 27, 2024 14:16
:dependabot: AI Thinker ESP32 Camera Module WebServer With Camera Stream And Support For Custom User Interface Using HTML CSS And JavaScript 👨‍💻 => Works With Any/All ESP32 Camera Modules ✨
#include "esp_camera.h"
#include <WiFi.h>
#include "esp_timer.h"
#include "img_converters.h"
#include "Arduino.h"
#include "fb_gfx.h"
#include "soc/soc.h"
#include "soc/rtc_cntl_reg.h"
#include "esp_http_server.h"
#include "ESP32Header.h"
@myselfgautham
myselfgautham / ESPCameraServer.ino
Created April 24, 2024 13:37
A Camera Server For ESP32 AI Thinkers Camera Module With Support For Many Other Modules Serves Through WiFi
#include "esp_camera.h"
#include <WiFi.h>
#include "esp_timer.h"
#include "img_converters.h"
#include "Arduino.h"
#include "fb_gfx.h"
#include "soc/soc.h"
#include "soc/rtc_cntl_reg.h"
#include "esp_http_server.h"
@myselfgautham
myselfgautham / Main.py
Last active April 26, 2024 12:53
Response To Issue Regarding PyFirmata #130
# Imports
import pyfirmata
from time import sleep
# Board Code
board = pyfirmata.ArduinoMega('/dev/tty.usbmodem1301')
print("Communication Successfully Started")
# Pin Variables
PWM1 = board.get_pin('d:4:p')