Skip to content

Instantly share code, notes, and snippets.

View microtherion's full-sized avatar

Matthias Neeracher microtherion

View GitHub Profile
sudo cp -r MacOSX_DiolanDeviceDriver/DiolanDeviceDriver.kext /System/Library/Extensions/
sudo kextutil /System/Library/Extensions/DiolanDeviceDriver.kext
sudo touch /System/Library/Extensions
@microtherion
microtherion / ols-fwloader-compile.sh
Last active December 16, 2015 22:09
Compiling ols-fwloader
git clone https://github.com/robots/ols-fwloader.git
cd ols-fwloader
autoreconf --install
./configure
make
/*
* FacyFlashlight - control an RGB LED with an ATtiny85.
* Matthias Neeracher 2013
*
* Needs Arduino-tiny core http://code.google.com/p/arduino-tiny/
* (The attiny core only supports 2 PWM outputs for the ATtiny85)
*
* This code is in the public domain.
*/
@microtherion
microtherion / programmers.txt
Created February 18, 2013 17:39
Arduino IDE configuration file for Bus Pirate (put into hardware/buspirate folder in your sketch directory)
buspirate.name=Buspirate
buspirate.communication=serial
buspirate.protocol=buspirate
//
// MadHat - Lilypad Simple based LED hat.
//
// Makes use of Charlieplexing, due to the limited number of pins available.
//
class LEDPlex {
public:
LEDPlex(int numPins, const int pins[], const char * patterns);
@microtherion
microtherion / MP3_Shield_RealtimeMIDI.ino
Created May 8, 2012 15:56
Playing Real Time MIDI through the Sparkfun MP3 Player Shield
/*
*
* File: MP3_Shield_RealtimeMIDI.ino
* Author: Matthias Neeracher
*
* This code is in the public domain, with the exception of the contents of sVS1053b_Realtime_MIDI_Plugin.
*
* The code is based on Nathan Seidle's Sparkfun Electronics example code for the Sparkfun
* MP3 Player and Music Instrument shields and and VS1053 breakout board.
*