Hi all, finally MyPSP, the suite I hope you remember with hardware (microcontroller) and software applications for robotics and human interfaces, now has a fully working Touchscreen both on slim (2000) and fat (1000), hope soon with 3000..., too.
It means that MyPSP application could fully use on screen menu commands, including interaction with OpenCV image processing, where it's important.
Now I'm thinking to create a prx plugin to work with Touchscreen since original XMB.
According to the work done with pikey and sio.prx, as well as the original XMB works with up, down, right, left logic, navigating thru all areas, I was thinking to capture from Touchscreen teh same finger-gestures: up, down, right, left, and CROSS as touch without moving, running what in evidence on screen from XMB.
I'll appreciate comments on it or different ideas.
Thanks, best regards
MyPSP Touchscreen: a TS.prx plugin as interface over XMB
-
- Posts: 388
- Joined: Tue Aug 12, 2008 12:46 am
Re: MyPSP Touchscreen: a TS.prx plugin as interface over XMB
Cool thing you done. Will you by any chance release your source on placing a touch screen on the psp? I would be pretty nice if you did. Keep up the good workmypspdev wrote:Hi all, finally MyPSP, the suite I hope you remember with hardware (microcontroller) and software applications for robotics and human interfaces, now has a fully working Touchscreen both on slim (2000) and fat (1000), hope soon with 3000..., too.
It means that MyPSP application could fully use on screen menu commands, including interaction with OpenCV image processing, where it's important.
Now I'm thinking to create a prx plugin to work with Touchscreen since original XMB.
According to the work done with pikey and sio.prx, as well as the original XMB works with up, down, right, left logic, navigating thru all areas, I was thinking to capture from Touchscreen teh same finger-gestures: up, down, right, left, and CROSS as touch without moving, running what in evidence on screen from XMB.
I'll appreciate comments on it or different ideas.
Thanks, best regards
Re: MyPSP Touchscreen: a TS.prx plugin as interface over XMB
I'm out of my pc this week, but I can tell you i advance that the RS232 Touchscreen controller I'm using is sending a 4-bytes set:Dariusc123456 wrote: Cool thing you done. Will you by any chance release your source on placing a touch screen on the psp? I would be pretty nice if you did. Keep up the good work
for example 81xxyy01 when screen is pressed and 80xxyy00 when released.
So a RX thread could receive the pack of the 4-bytes and it's up to the procedure to detect the bit for Press state or release state and convert the Touchscreen/Controller range of xx and yy values into the 480-272 PSP display resolution.
Very very simple, nothing extraordinary.
The most part is to set-up a working hardware.
To work with XMB bya a TS.prx, I'm assuming, but not yet started, as up,down,right,left and CROSS it's just a timed detection of ranges xx_old yy_old to xx_new yy_new for driving directions or no-move touch and send a corresponding character to pikey.
hope it will work: I've to develop this part.