I have modified the Minddroid github Android program to read sensors on a LEGO NXT (wonderful device!). Now I would like to read and write Bluetooth messages to a Mindstorms program running in the NXT. So that I can run a NXT program and send the results / readings to the Android when the Android asks for them.
How to interact between an Android and a running NXT program using Bluetooth
5.9k Views Asked by user462990 AtThere are 2 best solutions below

I was getting slightly confused with the bluetooth commands, but now I see that you need to download leJOS!
I usually try to avoid messing with the firmware on the NXT, but java is a lot easier to deal with!
For anyone that is interested, you can send commands down to the NXT from your android in its native format, although its not as pretty as listed above. There is a great tutorial here: http://www.robotappstore.com/Knowledge-Base/Programming-LEGO-NXT-Mindstorms/92.html
But if you want to download an app for free, here is one: http://www.robotappstore.com/Apps/Lego-NXT-Mindstorms-Driver---Android-app.html?x=693A00AA-7F15-46E7-9616-8101068DB58D
There are a bunch more, if you just search around on there too
Hope this helps!
I've created a project where the NXT sends data back to my Android device. Here's some code that should work:
This is all the Android side code:
This is a class that I wrote, that will take care of connecting and communicating via bluetooth.
In your activity class, you can create a
Connector
object. In the onCreate() method, you'll have to connect to establish a connection to the NXT like so:Now to read a message from the NXT (an Integer object) you can do it like this:
To close the connection:
This is all the NXT side code:
NOTE: Download leJOS for all the code to work (leJOS will allow you to code your NXT in java).
Define these two objects in your main class:
To connect to you phone:
To send data to the phone in form of an Integer object:
To disconnect run this:
I hope this helps.