Skip to content

Instantly share code, notes, and snippets.

View johnmwright's full-sized avatar

John M. Wright johnmwright

View GitHub Profile
using System;
using System.Collections;
using System.Collections.Generic;
using NUnit.Framework;
namespace NUnit_POC
{
[TestFixture]
public class PassingTest
{
@johnmwright
johnmwright / garagePi.py
Created January 4, 2015 05:23
GaragePi v2
#!/usr/bin/python
import RPi.GPIO as GPIO
import time
import SonicController as Sonic
import LedController as LED
import PhotocellController as Lux
import TempSensorController as Temperature
GPIO.setmode(GPIO.BCM)
#!/usr/bin/python
import RPi.GPIO as GPIO
import time
#
# See http://www.wrightfully.com/garagepi-my-raspberry-pi-playground
#
GPIO.setmode(GPIO.BCM)