Skip to content

Instantly share code, notes, and snippets.

@ihearmoth
ihearmoth / WaterSketch.pde
Created August 12, 2017 01:52
An interactive installation piece that has generates poetry about water every time you dip a spoon in it.  Made with Processing and Makey Makey
String[] s= {
" constituent of",
" transparent",
" fluid",
" which form",
" the world's",
" stream",
@ihearmoth
ihearmoth / tigertiger.pde
Created August 12, 2017 01:39
Text to Speech Emic controlled with processing
import processing.serial.*;
Serial myPort; // Create object from Serial class
int val, saying = 0, state = 0;
void setup()
{
// Open whatever port is the one you're using.
@ihearmoth
ihearmoth / movechairsinspace.pde
Last active August 12, 2017 01:29
Voice and Visual Commands to move chairs in a space
import processing.serial.*;
import arb.soundcipher.*;
SoundCipher sc = new SoundCipher(this);
Serial myPort;
Box[] bx;
int currentbox=0;
int size = 190;
float gap = 350;