View foundations-final-template-simple.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My final project | Foundations | Pratt SAVI</title> | |
<meta name="viewport" content="initial-scale=1.0"> | |
<meta charset="utf-8"> | |
<link href="https://carto.com/developers/carto-js/examples/maps/public/style.css" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Noto+Serif+JP|Open+Sans" rel="stylesheet"> | |
<style> |
View foundations-final-template.html
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>My final project | Foundations | Pratt SAVI</title> | |
<meta name="viewport" content="initial-scale=1.0"> | |
<meta charset="utf-8"> | |
<!-- Include Leaflet --> | |
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js"></script> | |
<link href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" rel="stylesheet"> | |
<!-- Include CARTO.js --> |
View gist:7934521
This file contains 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
int i = 0; | |
int j = 0; | |
boolean run = true; | |
void setup() { | |
background(#ffffff); | |
size(600, 600); | |
frameRate(1000); |
View soundkites.ino
This file contains 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
// Introduction to Physical Computing - ITP - NYU | |
// Fall 2013 - Tom Igoe | |
// Final project - Sound Kites | |
// Abe Rubenstein + Yu Ji | |
// ARDUINO | |
// sensor values | |
int s1 = 0; | |
int s2 = 0; | |
int s3 = 0; |
View soundkites.pde
This file contains 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
// Introduction to Physical Computing - ITP - NYU | |
// Fall 2013 - Tom Igoe | |
// Final project - Sound Kites | |
// Abe Rubenstein + Yu Ji | |
// PROCESSING | |
import ddf.minim.*; | |
import processing.serial.*; | |
Minim minim; |
View ColorFluteV2
This file contains 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
// Introduction to Physical Computing - ITP - NYU | |
// Fall 2013 - Tom Igoe | |
// Midterm Project - Color Flute | |
// Abe Rubenstein + Yu Ji | |
// PROCESSING | |
import processing.serial.*; | |
Serial port; |
View ColorFluteSensorTest
This file contains 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
// Introduction to Physical Computing - ITP - NYU | |
// Fall 2013 - Tom Igoe | |
// Midterm Project - Color Flute | |
// Abe Rubenstein + Yu Ji | |
// ARDUINO | |
// global variables for raw sensor values | |
int photo1 = 0; // photoresistor 1 (red) | |
int photo2 = 0; // photoresistor 2 (green) |
View ping_scale
This file contains 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
/* Ping))) Sensor | |
This sketch reads a PING))) ultrasonic rangefinder and returns the | |
distance to the closest object in range. To do this, it sends a pulse | |
to the sensor to initiate a reading, then listens for a pulse | |
to return. The length of the returning pulse is proportional to | |
the distance of the object from the sensor. | |
The circuit: | |
* +V connection of the PING))) attached to +5V |
View _3_speed_blinking
This file contains 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
long previousMillis = 0; // store last time LED was updated | |
long interval = 100; // blink interval (milliseconds) | |
void setup() { | |
pinMode(2, INPUT); | |
pinMode(3, OUTPUT); | |
pinMode(4, OUTPUT); | |
digitalWrite(4, HIGH); // start with one LED on |
View gist:f3fae647dec7d8fffc31
This file contains 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
var levels = 'LEVEL DATA'; | |
var ready= false; | |
var WebSocket = require('ws'), | |
ws = new WebSocket('ws://hidden-fortress-3752.herokuapp.com'); | |
ws.on('open', function() { | |
console.log('open function fired!') | |
ws.send('Arduino here!' ); | |
ready = true; |
NewerOlder