Skip to content

Instantly share code, notes, and snippets.

View dpoulson's full-sized avatar

Darren Poulson dpoulson

View GitHub Profile
@cody42
cody42 / CPPMTrainerKeypad.ino
Created September 14, 2022 21:46
CPPM Trainer Keypad
#include <Adafruit_Keypad.h>
/*
Small demonstration sketch to show how to generate a CPPM signal from a 4x4 keypad.
Uses an Arduino Nano.
CPPM Out is on Pin 10.
Keypad is connected to 2, 3, 4, 5 (rows) and A0, A1, A2, A3 (columns).
// Discord all events!
// A quick and dirty fleshing out of the discord.js event listeners (not tested at all!)
// listed here -> https://discord.js.org/#/docs/main/stable/class/Client
// Learn from this, do not just copy it mofo!
//
// Saved to -> https://gist.github.com/koad/316b265a91d933fd1b62dddfcc3ff584
// Last Updated -> Halloween 2022
/*
@xeoncross
xeoncross / cr2_to_video.sh
Last active December 15, 2023 13:06
Converting a folder of .CR2 (Canon Raw Images) into a timelapse video on mac or linux
# Assuming your have installed the following:
#
# brew install ufraw imagick ffmpeg
# apt-get install ufraw imagick ffmpeg
# Convert to JPG's
for img in *.CR2; do convert -resize 1920 "$img" "$img.jpg"; print "$img"; done
# Make a video