B4R Library rESP32SimpleBLE - ESP32 BLE

This library makes it very simple to advertise data through BLE. You just need to call ble.Advertise with the string that you want to advertise as the device name.

Note that it doesn't support making connections.


Usage example:

B4X:
#StackBufferSize: 600
Sub Process_Globals
   Public Serial1 As Serial
   Private ble As ESP32SimpleBLE
   Private timer1 As Timer
End Sub

Private Sub AppStart
   Serial1.Initialize(115200)
   Log("AppStart")
   timer1.Initialize("timer1_Tick", 500)
   timer1.Enabled = True
End Sub

Private Sub Timer1_Tick
   Dim data As String = JoinStrings(Array As String("B4RTime: ", NumberFormat(Millis, 0, 0)))
   If ble.Advertise(data) = False Then
       Log("failed to set name.")
   End If
End Sub

iOS app:
SS-2018-05-22_08.39.51.png


The clients need to scan for near by devices and check the device name.
B4i and B4A clients examples are attached.

On Android the name is cached so we need to get it from the advertising data map.
On iOS it stops scanning after a while so we restart the scanning process every 10 seconds.
 

Attachments

  • rESP32SimpleBLE.zip
    1.9 KB · Views: 898
  • B4A_BLE_Client.zip
    8.3 KB · Views: 853
  • B4i_BLE_Client.zip
    1 KB · Views: 645

MathiasM

Active Member
Licensed User
I'm a bit confused by the 'name' vs 'data' in this library and your explanation.

On Android the name is cached so we need to get it from the advertising data map.

But is the data the same as the name here? This seems to imply this:

If ble.Advertise(data) = False Then
Log("failed to set name.")
End If

Altough in the B4A code I see this:

'The name is cached by the OS so we need to get it from the advertising data.
If AdvertisingData.ContainsKey(9) Then
Dim RawName() As Byte = AdvertisingData.Get(9)
Dim n As String = BytesToString(RawName, 0, RawName.Length, "utf8")
If n.StartsWith("B4R") Then
CallSub2(Main, "NewData", n)
End If
End If

So the name is never actually used here? It's just checking if the data starts with a B4R?

Does a 'name' actually exist in this advertise context? Isn't everything data?
Sorry for my questions, I'm just trying to understand.

My ESP32 is not yet in my possesion, so I cannot check out. I see you can send a string, but would it be possible to set bytes and convert them to a string. I'm willing to implement the Eddystone protocol with this code: https://github.com/google/eddystone/tree/master/eddystone-uid

Thanks for your clarification.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
The B4R code sets the advertised device name.

The B4A event is:
B4X:
DeviceFound (Name As String, DeviceId As String, AdvertisingData As Map, RSSI As Double)

In most cases you will use the Name parameter to get the advertised device name. However as Android caches the value we cannot use it in this case and instead we read it from the advertising map directly. If you try it you will see that the Name parameter is not being updated. It will keep the first value that was sent.
 

peacemaker

Expert
Licensed User
Longtime User
Works, thanks.
Max 31 bytes are allowed to transmit.
Minimal working timer interval = 15 msec.
B4X:
timer1.Initialize("timer1_Tick", 15)
If smaller the board is restarted or does not work at all.

Max payload incoming transfer speed is about 0.2 KBps only.
1689961588496.png

I think, if BLE works so at any possibility - it's not suitable for fast sensors data collection.
It's just for battery economy work of low-speed sensors.


update: checked BT-chat https://www.b4x.com/android/forum/threads/resp32bluetooth-esp32-classic-bluetooth.93257/#content
incoming speed is 5 times higher, 1 KBps with the same timer 15 msec, sending 1000 bytes each time
B4X:
Public Sub NewMessage (msg As String)
    Counter = Counter + msg.Length
    Log(Counter)
    Dim now As Long = DateTime.Now
    Dim speed As Float = Counter / 1000 / ((now - StartTime) / 1000)    'kbps
    Log("speed = " & speed)
    Activity.Title = "speed = " & NumberFormat2(speed, 1, 3, 3, False) & "kbps"
    Dim n As String = (now - PrevTime).As(Int) & ": " & msg
    Log(n)
    PrevTime = now
  
  
  
    LogMessage("You", msg)
End Sub
17433
speed = 1.0492326021194458
31: 8901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567
17450
speed = 1.0459749698638916
68: Echo from ESP32:
17550
speed = 1.0500807762145996
30: 8901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567
17667
speed = 1.0507315397262573
101: Echo from ESP32: 8901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567
17684
speed = 1.0453389883041382
103: Echo from ESP32:
17784
speed = 1.0493273735046387
31: 8901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567
17801
speed = 1.0444144010543823
96: Echo from ESP32:
17901
speed = 1.0483747720718384
31: 8901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567
** Activity (chatactivity) Pause, UserClosed = false **
1689964773310.png
 
Last edited:
Top