Skip to content

Instantly share code, notes, and snippets.

View jrmedd's full-sized avatar

James Medd jrmedd

View GitHub Profile
Verifying that +jamesmedd is my blockchain ID. https://onename.com/jamesmedd
@jrmedd
jrmedd / Mega_Drive_PS3.ino
Created May 4, 2013 08:54
Use Mega Drive pad on PS3. Requires Unojoy (http://code.google.com/p/unojoy/) A = Circle B = Cross C = Square Start + Up = Home Button Start + Down = Select
#include "UnoJoy.h"
int up = 2;
int down = 3;
int left = 4;
int right = 5;
int ab = 6;
int slct = 7; //setting this pin HIGH/LOW reads A/B and Start/C
int startc = 8;
@jrmedd
jrmedd / LatestArduinoIDE.cpp
Last active May 16, 2020 10:50
Replace '#include "WProgram.h"' with this code to make libraries compatible with latest Arduino IDE.
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#else
#include "WProgram.h"
#endif
#include <Wire.h>
/*Replace #include "WProgram.h" with the above code to make compatible with
latest Arduino IDE.*/
#include "DigiKeyboard.h"
int tilt = 0;
int leftUp = 1;
int rightDown = 2;
void setup() {
pinMode(tilt, INPUT);
pinMode(leftUp, INPUT);
pinMode(rightDown, INPUT);
# Tweeting Letterbox
# by James Medd
# November 2012 (original version)
# http://jamesmedd.co.uk/
#!/usr/bin/python
import picamera
import RPi.GPIO as GPIO
import sys