Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am gwabster on github.
  • I am gwabster (https://keybase.io/gwabster) on keybase.
  • I have a public key ASBk3Ijq2Ow0BkxnxGCEjrgzRvUvYk4Nz3kMZmKXBGtAKAo

To claim this, I am signing this object:

@gwabster
gwabster / PF_PathFinder.pde
Created December 16, 2015 13:32
Pathfinding in processing
import pathfinder.*;
Graph[] gs = new Graph[4];
PImage[] graphImage = new PImage[4];
int start[] = new int[4];
int end[] = new int[4];
float nodeSize[] = new float[4];
int graphNo = 0;
int algorithm;
@gwabster
gwabster / servo.py
Created October 7, 2015 14:16
Gabrielle's code for moving the servo with firmata
import os, sys
import time, datetime
import imaplib
import email
import logging
import pyfirmata
import glob
try:
from pyfirmata import Arduino, util