This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.francisli.processing.http.*; | |
import processing.serial.*; | |
Serial myPort; // The serial port | |
int value = 0; | |
float oldValue; | |
PFont InstagramFont; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RotarySwitch.pde -- test out a rotary switch (not a rotary encoder) | |
// Tod E. Kurt, http://todbot.com/blog/ | |
////4-position rotary switch | |
const int firstRotaryPin = 3; | |
const int lastRotaryPin = 7; | |
int button = 9; ////button input | |
int input1 = LOW; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.francisli.processing.http.*; | |
PFont InstagramFont; | |
PImage backgroundimg; | |
PImage userphoto; | |
PImage profilepicture; | |
String username; | |
String tag; | |
String[] tagStrings; |