Skip to content

Instantly share code, notes, and snippets.

View brentmc79's full-sized avatar

Brent Collier brentmc79

View GitHub Profile
@brentmc79
brentmc79 / getting-started-with-quadcopters.md
Last active August 29, 2015 14:14
Getting Started with Quadcopters

Getting Started With Quadcopters

Learn to Fly

Buy a Hubsan X4. Fly it. Crash it. Repeat. Do this until you feel comfortable in the air.

Nomenclature

  • 250/450/etch - This refers to the size of the quad, specifically the motor-to-motor distance in millimeters. 250 is the standard FPV race quad size.
  • FPV - First Person View
@brentmc79
brentmc79 / main.cpp
Created September 14, 2024 01:20
Lillygo S3 T-Display with Seesaw Gamepad main file
#include "Arduino.h"
#include "Arduino_GFX_Library.h"
#include "Adafruit_seesaw.h"
// Display Config
#define GFX_DEV_DEVICE LILYGO_T_DISPLAY_S3
#define GFX_EXTRA_PRE_INIT() \
{ \
pinMode(15 /* PWD */, OUTPUT); \
digitalWrite(15 /* PWD */, HIGH); \