Tuesday, June 12, 2007

Simple live synth for my phone


So i used mobile.processing for the first time last night. Great stuff. Made a quick and easy live synth for my phone. It's relatively responsive, considering...

Sketch has been tested and working on a Sony Ericsson K610i

[expand / collapse code]

8 comments:

benoch said...

I test it on my Sony Ericsson k700i.
It works but I must change code's row:

if(key >= '1' &&amp;amp; key <= '9') {

into:

if(key >= '1' && key <= '9') {

benoch said...

I test it on my Sony Ericsson K700i.
It works, but I had to change this row's code:

if(key >= '1' &&amp;amp; key <= '9') {

into:

if(key >= '1' && key <= '9') {

Good!

Sebastian Tomczak said...

whoops! this is a mistake from copying yhe code into HTML! my apologies.

cheers,
seb

dyLAB said...

will give this a go on my k750i

dyLAB said...

works fine on k750i

Sebastian Tomczak said...

cool.

Sebastian Tomczak said...

its good to hear that it works on your phone. thanks for trying it out.

robin said...

Worked just fine on my Sony Ericsson W810i. I am thinking with a bit more code this could get rather interesting.