Communication between a client and a Bluetooth server between a computer and a mobile phone

I need only a basic example or tutorial on a mobile phone and computer via Bluetooth.

Also a good link / website to get started is well rated.

Part of the server (part of the computer) can be performed in many programming languages ​​(Java, C ++, Python, or even something else).

The client part (mobile phone) must be MIDlet Java Micro Edition.

+6
bluetooth java-me bluecove midp jsr82
source share
1 answer

After many days of research, I managed to create an application that sends (in real time) screenshots of the area around the mouse cursor to a computer for a mobile phone client.

Both client and server are written in Java. I used BlueCove to make part of the desktop. This is an implementation of JSR-82 (the same protocol as MIDP), so a lot of code is used for desktop computers and mobile parts.


In case someone needs this, I release the application as public, without any responsibilities.

Download code

I am not proud of it. After all, I was 15 years old when I wrote this. In some places, the code is terrible, but I liked doing the abstraction to reuse the code.

+3
source share

All Articles