B4A Library Customise your BLE GATT Service with BLE Peripheral 2 Enhanced - Peter Simpson    Feb 11, 2024   (24 reactions) Start (Name As String)
Starts advertising. The name will be set as the device Bluetooth name. Pass an empty string to keep the current name.
The Start event will be raised.
Start2 (Name As String, Settings As android.bluetooth.le.AdvertiseSettings)
Similar to Start. Allows overriding the default se B4A Example B4Xgoodies_from_walt61 Online - AnandGupta (first post)    Feb 19, 2024   (4 reactions) B4J
ABMaterial
ABMaterial
ABMaterial is a new framework combining a tuned Materialize CSS with the free programming tool B4J. It allows creating WebApps that not only look great thanks to Googles Material Design, but can be programmed with the powerful free tool from Anywhere Software without any kn B4i Question [B4X] BLE refresh available Services and Characteristics - Missing Feature? - Erel (first post)    Mar 02, 2023   (1 reaction) Start with B4A. It should work assuming that you know the service UUID.
You can get all services with:
Dim gatt As JavaObject = manager.As(JavaObject).GetField("gatt")
Dim services As List = gatt.RunMethod("getServices", Null)
For Each service As JavaObject In services
Log(service.RunMethod("get B4A Question BLE GATT Server and GATT Client - Erel (first post)    Oct 02, 2020   (1 reaction) See this: https://www.b4x.com/glossary/bluetooth/
You do need to implement a peripheral, however it is not so simple. You will need to extend BLEPeripheral for this as BLEPeripheral is built for a specific use case. Wish BLEPeripheral update - Peter Simpson (first post)    Jan 24, 2024   (2 reactions) Hmm, a nice idea but Anywhere Software wouldn't do that. A link could be placed in the original library post stating that if the developer is looking to create their own custom GATT service with custom characteristics then another library is available <here>. That might work, but that's completely u Wish Updated / new BLE library that can handle multiple services / characteristics using the same UUID - Jmu5667 (first post)    Mar 27, 2024   (1 reaction) gatt.RunMethod("readDescriptor", Array(desc))
Wait For bleObjManager_DescriptorRead (Success As Boolean, objDesc As Object)
Dim value() As Byte = objDesc.As(JavaObject).RunMethod("getValue", Null)
Currently testing this. B4i Question Can someone help me convert my B4A code to B4I? - emexes (first post)    Jul 21, 2019   (1 reaction) The BLE GATT units page is still readable:
https://www.bluetooth.com/specifications/assigned-numbers/units/
But the previously-readable format presentation page is kaput:
https://www.bluetooth.?attributeXmlFile=org.bluetooth.descriptor.gatt..xml
Happily, Archive.org has a copy:
https://web.archive B4A Question [SOLVED] BLE connection problems - wes58 (first post)    Aug 04, 2021   (2 reactions) // Check https://github.-BLE-Library/issues/54
// This bug specifically occurs in SDK 26 and is fixed in SDK 27
bluetoothGatt = device.connectGatt(context, false, gattCallback,
BluetoothDevice.TRANSPORT_LE, preferredPhy/*, handler*/);
} else if (Bu B4A Question BLE - Heart Rate Monitor does not send data - grafsoft (first post)    Dec 04, 2022 (Utils.java:901) ' at com.android.bluetooth.Utils.(Utils.java:960) ' at com.android.bluetooth.gatt.GattService.registerScanner(GattService.java:3677) ' at com.android.bluetooth.gatt.GattService$BluetoothGattBinder.registerScanner(GattService.java:945) ' at com.android.bluetooth.gatt.Gatt B4A Question Connect To Bluetooth Dice - emexes (first post)    Feb 13, 2023 Uh oh. :oops:
I was expecting that there'd be a BLE GATT characteristic that you could read normally that would return the current die orientation presumably as a value 1..6 or possibly a computer diehard value 0..5
But the mention of the Nordic UART Service makes me think that perhaps the dice ar Page: 1   2   3   4   5   6   7   Powered by ColBERT |