Skip to content

Instantly share code, notes, and snippets.

View jumahe's full-sized avatar

Jumahe jumahe

View GitHub Profile
@jumahe
jumahe / infinity.pde
Last active November 1, 2018 21:43
Codevember 2018 - #1 infinity
import toxi.processing.*;
import toxi.geom.*;
import toxi.geom.mesh.*;
import peasy.*;
PeasyCam cam;
ToxiclibsSupport gfx;
ArrayList<Star> stars;
@jumahe
jumahe / fblike.ino
Last active December 22, 2015 14:49
Arduino-like code for a Particle Photon project.
int ssPin = D2;
String lastVal = "";
void setup()
{
// -- Serial begin
Serial.begin(9600);
// -- SPI init
pinMode(ssPin, OUTPUT);