I’m writing a mobile remote program that the mobile’s touch screen will be the remoted computer mouse. I’m using android for mobile and C# for server side programming.
Question:
- How can I establish a data connection between a mobile phone and
computer that passes mouse position continuously without stopping?
I found 32feet.net that is free class library about Bluetooth but I couldn’t solve my problem.
Thank you in advance.
You have to establish a client server connection and send information through a bluetooth socket.
Therefor you need a C# Bluetooth API or if it doesnt exist you write your own with sockets.
What would make your life easier i think is to use Java instead of C# for the server side as android uses Java, thats my opinion.
But i suggest you read more about how the Bluetooth protocol works with android and C#
Here are 2 links that will probably help you get started.
C# and Bluetooth Programming
http://developer.android.com/guide/topics/connectivity/bluetooth.html
I hope that helps you.