Other Bluetooth communication from B4i

Adamdam

Active Member
Licensed User
Longtime User
I need to establish simple communication between iPhone or iPad to external hardware bluetooth module.

The following library/code work well in B4a:

Just using simple libraries as following:
Dim Serial1 As Serial
Dim TextReader1 As TextReader
Dim TextWriter1 As TextWriter

Sub mnuConnect_Click
Serial1.Connect("42:71:34:21:89:44")
End Sub

and to sending:
TextWriter1.WriteLine(String1)
TextWriter1.Flush

I need like that in B4i.
 
Top