If you are in New York come say hello!
Comments Off
thanks to Ellie and the rest of the rocketboom team.
This week is thesis week at ITP. The presentations are streamed live online. Mine will happen thursday, May 7th at 1pm. They will also be archived to watch later on.
Comments Off
I’ve been playing around with logos and fonts, hoping for inspiration. It’s not really happening. I have settled on the name kokoro and would love some feedback on mylogo design.
Comments Off
is a communication tool, a bridge, between the user and the music player.
it aims for serendipity, through a new way of choosing and controlling your music.
it lets your heart rate decide for you.
progress update.
the board works, here are some pictures:
and a small video of the first time kokoro blinked! kokoro
also i’ve had a second version made with all the corrections i learned from past mistakes. i got some small batteries and still need an enclosure…
Comments Off
other ways of ipod interaction:
Mimi switch works with facial expressions
a patent points out alternative volume regulation.
Comments Off
kokoro works thanks to an Atmel chip running Arduino software.
The main code to get it to work is this arduino function:
void doCmdA4(int cmd[]) { // do IN AiR mode (4)
int cmdByte = cmd[0];
int cmdByteLen = cmd[1];
int parameter = cmd[2]; // some comands need parameters.
// write something for the cs in case there’s no parameters.
int csByteLen = cmdByteLen+1;
int cs = checkSum(csByteLen, 0×04, cmdByte, parameter, 0×00, 0×00, 0×00, 0×00);
Serial.print(0xFF, BYTE); // header
Serial.print(0×55, BYTE); // header
Serial.print(csByteLen, BYTE); // this byte is the lenght of the data it should expect
Serial.print(0×04, BYTE); // ipod is in mode 4
Serial.print(0×00, BYTE); // in AiR mode the commands all have only 1 null block before the command
Serial.print(cmdByte, BYTE); // send the command
if (parameter > 0){ // not all cmds have parameters
Serial.print (parameter, BYTE); // send the parameter
}
Serial.print(cs, BYTE); // send the checksum
}
to which an array of numbers is sent.
Comments Off