24ClockDS v0.5

Posted on July 13th, 2007 by felix.
Categories: Release.

The clock from the TV show 24, now on your DS! With realistic font and sound! It’s open source (GNU GPL v2), so modify as you wish.

59

24ClockDS screenshot 2

Ported from 24 Konfabulator widget by Timo Graw. Idea from Darkflame.

Download 24ClockDS binary and source

Future improvements:

  • Better sound
  • Soft reset(couldn’t get it working…)
  • Alarm clock(Anyone know what would make a good alarm sound?)

0 comments.

Multitouch demo

Posted on June 10th, 2007 by felix.
Categories: Release.

This program can detect if there is one or two styli on the touch screen.
Video


Taiko no Tatsujin DS
will be released soon. In the arcade and PS2 versions, you hit the drum with one stick for small notes and both sticks for big notes. People kept on saying you can’t hit the DS with two styli, I wrote this to prove them wrong.

To use:
First, press hard on the touch screen using one stylus and push A once to calibrate the system. (You can also use up and down to manually calibrate it.)
Then try touching the screen with one or more styli.
if (Stylus.Held){
if (((touchX * touchZ2) / (64 * touchZ1) - touchX / 64) < threshold){
//two styli
}else{
//one stylus
}
}

This is probably a solution looking for a problem, can anyone think of a use for this code?

Thanks to DynamicStability.

multitouch.zip

0 comments.