Skip to content

Instantly share code, notes, and snippets.

View andrewb1269's full-sized avatar

Andrew Brandt andrewb1269

View GitHub Profile
@milnak
milnak / garlic-os-tips.md
Last active October 17, 2025 09:52
My set of GarlicOS tips #rg35xx

Garlic OS Tips (Windows-based)

GarlicOS Cookbook

Follow these instructions for an easy way to get up and going quickly! These are complete instructions, and will be the easiest way to get started on a new RG35XX.

Set up SD Card

Get a high quality SD (e.g. SanDisk Extreme) card, 128GB or larger, 256GB is recommended. Don't skimp here, they're cheap, and don't use the card that comes with the RG35XX as it's crap.

@mabdrabo
mabdrabo / sound_recorder.py
Created January 28, 2014 23:05
Simple script to record sound from the microphone, dependencies: easy_install pyaudio
import pyaudio
import wave
FORMAT = pyaudio.paInt16
CHANNELS = 2
RATE = 44100
CHUNK = 1024
RECORD_SECONDS = 5
WAVE_OUTPUT_FILENAME = "file.wav"
@Elbow-Room
Elbow-Room / Simon Says (Arduino)
Created May 17, 2013 00:31
A simple Simon Says game to run on Arduino
/* Author: Elbow-Room
* Purpose: To run the classic game "Simon" on arduino using random sequences and a maximum of 100 turns
*
* HARDWARE SETUP:
* Connect lights to digital ports 10 through 13
* Connect buttons to digital ports 2 through 5
* Connect Piezo to digital port 7 and switch to digital port 9
*/