Skip to content

Instantly share code, notes, and snippets.

View JohnathonNow's full-sized avatar
🐝
Bee

John Westhoff JohnathonNow

🐝
Bee
View GitHub Profile
@JohnathonNow
JohnathonNow / Atari2600USB.ino
Created February 2, 2017 07:50 — forked from anonymous/Atari2600USB.ino
A simple program for the Digispark Pro for reading in 10 digital inputs and mapping them to joystick buttons.
#include "DigiJoystick.h"
char BUTS[] = { 6, 5, 2, 1, 0, 7, 8, 9, 10, 11 };
void setup() {
for (int i = 0; i < 10; i++) {
pinMode(BUTS[i], INPUT);
}
}
void loop() {