Android Tutorial Android Serial tutorial

SergioAntunes

Member
Licensed User
Longtime User
Check the unfiltered logs. Maybe there will be something relevant.

I finally checked the logs and RFCOMM get an error 111. Nothing else jumps at me.


You can try using Connect3 or ConnectInsecure. These methods usually require you to find the correct port.

I will try. Not sure how to get the port number but I will research.

Question: there is a link on the Connect3 "help bubble" but it doesn't work on my system. What is the link address?

Thanks
 

SergioAntunes

Member
Licensed User
Longtime User
Galaxy II conclusion....

Just to close this thread....

I was unable to connect to a Galaxy II with. I tried all the suggestions but no go.

So I returned the Galaxy and purchased a Nexus 7 with 4.1.1 which is working fine.
 

YIM bunchhat

Active Member
Licensed User
Longtime User
:sign0144: .........Hello I have 1 problem about chat via bluetooth, I want to send message every time while I hold send button message was send again and again loop. Can anyone can tell me about that code?
 

YIM bunchhat

Active Member
Licensed User
Longtime User
My code use for sending data to my car remote control. What I want to do is I want to send data again and again automatic while I hold "sending button". I means data is sent loop until I release button. but it compile error......:'(
code:
Sub btnRe_Click
Do
If connected Then
TextWriter1.Write("r")
TextWriter1.Flush
End If
Loop Until btnRe.Enabled = False
End Sub
 
Last edited:

Erel

B4X founder
Staff member
Licensed User
Longtime User
Your code will not work for several reasons.
There is no Do ... Loop Until <condition> in Basic4android. The condition must start the block.

I recommend you to switch to AsyncStreams. Use a timer to send the command. Enable the timer when the button is down and disable it when the button is up.

If you need more help then please start a new thread for this question.
 

todh

Member
Licensed User
Longtime User
Serial Communications

I have two issues with the Serial example.
First, you need to add a menu button to poll for devices.
Second, When attempting to read data from my Bluetooth device, it hangs at txtLog.Text = txtLog.Text & TextReader1.ReadLine & CRLF. Reading the threads it looks like it is waiting for a (chr$10). I can not change the hardware and I am stuck. I tried a work around to read the 8 item menu but when I request the data I get stuck in the same place again. TextReader1.ReadLine needs to be more robust. :BangHead:
 

todh

Member
Licensed User
Longtime User
I down loaded the AsyncStreams and it would not run. I read the comments and found that InitializePrefix might need to be changed. That worked, however there are two different variables listed, AStream and AStreams. I can get the menu of eight. When I try to get the data I get a response of "you #R$". I do not know what that means or what to do about it. So I am still stuck.
 

areripe

Member
Licensed User
Longtime User
Hye, maybe this work for android that have menu button like galaxy s2 and so on, but how about Tabs 2 that not come with menu button.
Any option?
I just think to use button on the screen. But I have no idea how to do it.
hope you can help.
 

Stulish

Active Member
Licensed User
Longtime User
All the android tablets i have used have had the option button on the screen - it is normally 3 little dots (on the top or bottom of the screen), (but i have never used the tab 2)
 

walterf25

Expert
Licensed User
Longtime User
Binary Data over bluetooth

Hi Erel, i was wondering if you could help me with something, i have this bluetooth heart monitor device i'm trying to write an application for it, i can connect with the device and my phone just fine but the data sent from the device is in binary format, when i receive the data on my phone obviously is all gibberish to me, is there a way to convert that data to a readable format i can understand?

Thanks,
Walter
 

ADPTraining

Member
Licensed User
Longtime User
Bluetooth Serial download not working on tablet...

Erel, the download project from 1st post is not working with Samsung 10.1 Gallaxy Tab. Any ideas why? The issue is that the InputList is not populating. I checked the variables (pausing app) and they do show up there. Thanks in advance...
 

ADPTraining

Member
Licensed User
Longtime User
Ok, found the issue, Dumb... I was using the "Response" variable before the for/next routine. Here's the code for those who need it. I am using a Gallaxy Tab.

Sub ConnectRoutine

Dim PairedDevices As Map
PairedDevices = Serial1.GetPairedDevices
Dim DeviceList As List
DeviceList.Initialize
Dim Selection, i As Int

For i = 0 To PairedDevices.Size - 1
DeviceList.Add(PairedDevices.GetKeyAt(i)) 'add the friendly name to the list
Next
Selection = InputList(DeviceList, "Choose OBD-II Device", -1) 'show list with paired devices ****ERROR WAS HERE***

If Selection <> DialogResponse.CANCEL Then
Serial1.Connect(PairedDevices.Get(DeviceList.Get(Selection))) 'convert the name to mac address
End If

End Sub
 

Similar Threads

  • Locked
  • Article
Android Tutorial Android JSON tutorial
Replies
90
Views
164K
  • Locked
  • Article
Android Tutorial SQL tutorial
Replies
161
Views
284K
  • Locked
  • Article
Android Tutorial GPS tutorial
Replies
310
Views
263K
Cookies are required to use this site. You must accept them to continue using the site. Learn more…