YouTube / Makoto Ono – via Iframely
More information at Artfab website
Enhancing Touch Interaction on Humans, Screens, Liquids, and Everyday Objects
YouTube / DisneyResearchHub – via Iframely
More information at Disney Website
YouTube / DisneyResearchHub – via Iframely
Passive, Acoustically-Driven Interactive Controls for Hand Held Devices
YouTube / DisneyResearchHub – via Iframely
More information at Disney reserach website
ml.lib: Robust, Cross-platform, Open-source Machine
Learning for Max and Pure Data
Github link
Techniques in Swept Frequency Capacitive Sensing: An Open Source Approach
Related, for your PDF hoarding pleasure: http://www.nime.org/archives/
Interesting: Analysis of human gestures in the 3D space to control multimedia interfaces)
A patent for detecting liquid levels through capacitance sensing.
Using Swept Frequency for finding faults in a telephone line (patent), and for detecting wetness
Using unique capacitance properties of an individual to create an identifiable fingerprint. That is, identifying somebody by touch – such as which user is touching a multitouch surface. pdf.
A gesture learning toolkit for C++
A comparison between Swept Frequency and other methods for frequency response analysis.
Information about Multispectral/Hyperspectral imaging and Radar.
]]>This is for anyone looking to do a one-touch fabric button with (almost) NO FORCE!! :O
]]>cs.cmu.edu – via Iframely
]]>Also, the processing code didn’t work for me at first. I added the code I used at the end of this post, but it would be good to look at the code in the arduino sketch since it has a good way to draw a line graph.
// Example by Tom Igoe
import processing.serial.*;
Serial myPort; // The serial port
PFont myFont; // The display font
String inString; // Input string from serial port
int lf = 10; // ASCII linefeed
int xPos = 0;
void setup() {
size(600,600);
// You'll need to make this font with the Create Font Tool
//myFont = loadFont("ArialMS-18.vlw");
//textFont(myFont, 18);
// List all the available serial ports:
printArray(Serial.list());
// I know that the first port in the serial list on my mac
// is always my Keyspan adaptor, so I open Serial.list()[0].
// Open whatever port is the one you're using.
myPort = new Serial(this, Serial.list()[0], 9600);
myPort.bufferUntil(lf);
}
void draw() {
background(0);
// get the ASCII string:
if (inString != null) {
// trim off any whitespace:
inString = trim(inString);
/* replace this code with code to draw your data
String[] vals = inString.split(",");
// convert to an int and map to the screen height:
float y = float(vals[0]);
float x = float(vals[1]);
y *= -1;
x = map(x, -100, 100, 0, height);
y = map(y, -100, 100, 0, width);
// draw the line:
stroke(127,34,255);
arc(x-5, y-5, 10, 10, 0, 2*PI);
*/
}
}
void serialEvent(Serial p) {
inString = p.readStringUntil(lf);
}
Companies like PTD clients:
All mCookie boards are Arduino-compatible. Makers can write their own programs in the Arduino IDE and upload their code to the hardware via USB. It dramatically decreases the size and cost of design prototyping, improves flexibility of Arduino-compatible boards, and enhances the user experience of building IoT projects. You can learn more about this interesting project in their Kickstarter page.
]]>
Check here for all the sensors.
Smokey has constructed multiple sensors using this website as a guide, including a button sensor (conductive fabric and neopreme), a pressure sensor (using velostat and conductive thread), a tilt sensor (conductive fabric, thread, and a ‘bead’ made out of a nut). He has also constructed a linear encoder using 2 limit switches and an encoding pattern cut into cardboard.
]]>
More info here.
]]>YouTube / Babolat – via Iframely
]]>