Phi-2 shield test code updated

Mistake was spotted (thanks Jim!) and corrected on phi-2 shield testing code. The new code is loaded the the google code page:

http://phi-prompt-user-interface-library.googlecode.com/files/Phi_2_testing_v2%2009242011.zip

I was updating the phi-1 shield testing code and didn’t change the pin definitions back to phi-2 shield 🙂

Moving codes to Google code

My current place to host project codes and libraries, mediafire.com, is full of spam. I am moving my codes to Google code. In this process if you see any broken links, please don’t hesitate to leave a message.

I’ve created the following projects on Google code so far:

http://code.google.com/p/multi-tap-keypad/

http://code.google.com/p/phi-prompt-user-interface-library/

http://code.google.com/p/phi-big-font/

I will eventually move all libraries and project codes to Google code.

Multi-tap function

Introduction:

This is a part of my recent design phi-panel. I decide to release it into the “wild” and see what happens. You are free to use it for not-for-profit purposes. In case you want to make money with it, you owe me some favor, so go ahead and buy a few of my phi-panels 😉

This code is totally compatible with the standard keypads library for arduino or my not-yet-released super phi_keypads library.

Multi-tap keypad mapping:

This is a generic phone keypad layout:

This is for my phi-panel with more functions than a generic keypad:

Video:

This is a video of me using multi-tap on phi-panel:

Download:

http://code.google.com/p/multi-tap-keypad/

How to use:

You may change the definition of the multi-tap keypad, which contains 5 symbols per numerical key for all 10 numerical keys.
To use the function:
1) Call your keypad’s getKey method to receive a key. This key has to be ‘0’ to ‘9’ or other symbols such as ‘#’ or NO_KEY or scan codes for phi_keypads objects.
2) Call multi_tap and pass the received key to it.
3) The returned value indicates what is going on.
If the most significant bit (MSB) is set to 1, then the multi-tap is in process. You should print the return value (with MSB reset to 0) in place.
If MSB is reset to 0, then the multi-tap has concluded and a final character is produced. You should print this character in place and move cursor to the next position.
If the return value is NO-KEY, then nothing is happening.
Pressing the ‘#’ key engages or disengages shift to switch between upper and lower cases.
Calling the multi_tap with RESET_MTP will result in the multi_tap process to reset, useful if you are unsure of the function’s status. Say you didn’t finish a multi-tap process and switch to another piece of code and then later want to use multi-tap, you should reset it before using. The return value for this call is to be discarded.

%d