Behzad
Behzad

Reputation: 2210

Mobile remote program

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:

I found 32feet.net that is free class library about Bluetooth but I couldn't solve my problem.

Thank you in advance.

Upvotes: 1

Views: 2120

Answers (1)

fonZ
fonZ

Reputation: 2479

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.

Upvotes: 1

Related Questions