Skip to content

Instantly share code, notes, and snippets.

View a-bildungSROMAN's full-sized avatar

Sarah Roman a-bildungSROMAN

View GitHub Profile
@a-bildungSROMAN
a-bildungSROMAN / Macbeth Game
Last active February 8, 2016 19:18
Competitive Macbeth Handheld Game - Sense HAT for RPi and Python
import random
import time
from sense_hat import SenseHat
from subprocess import call
sh = SenseHat()
sh.set_rotation(90)
sh.show_message("Let's begin Act I...", text_colour=[0, 50, 220], scroll_speed=.055)
time.sleep(4) ###These variables can be edited. Start the game however you'd like.###
@a-bildungSROMAN
a-bildungSROMAN / 1984 Telescreen
Last active January 14, 2016 13:40
1984 Telescreen Using Arduino IDE
~Created by Chloe Quinto~
*/
#include <SPI.h>
#include <Wire.h>
#include <Adafruit_GFX.h>
#include <Adafruit_SSD1306.h>
#define OLED_MOSI 9
#define OLED_CLK 10