This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Verifying that +jamesmedd is my blockchain ID. https://onename.com/jamesmedd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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.*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "DigiKeyboard.h" | |
int tilt = 0; | |
int leftUp = 1; | |
int rightDown = 2; | |
void setup() { | |
pinMode(tilt, INPUT); | |
pinMode(leftUp, INPUT); | |
pinMode(rightDown, INPUT); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
NewerOlder