You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying to use it and I Tried to create the Bluetooth Manager but somehow I cannot include the BluetoothManagerBuilder:
import org.sputnikdev.bluetooth.manager.impl.BluetoothManagerBuilder
bt_manager = new BluetoothManagerBuilder().withTinyBTransport(true).build()
The import fails. :-(
Also do you an example on how to to make a simple discover connect and read a characteristic?
I have gotten as far as trying like this...
Hello sputnikdev,
Really cool BT framework you got here. :-)
I was trying to use it and I Tried to create the Bluetooth Manager but somehow I cannot include the BluetoothManagerBuilder:
import org.sputnikdev.bluetooth.manager.impl.BluetoothManagerBuilder
bt_manager = new BluetoothManagerBuilder().withTinyBTransport(true).build()
The import fails. :-(
Also do you an example on how to to make a simple discover connect and read a characteristic?
I have gotten as far as trying like this...
bt_manager.start(true)
Set discoveredDevices = bt_manager.getDiscoveredDevices()
discoveredDevices.each { device ->
println(device.getName())
}
Am I on the right track?
Also When including the BlueGiga Lib I get a following error:
Could not find com.zsmartsystems.bluetooth.bluegiga:com.zsmartsystems.bluetooth.bluegiga:1.0.0-SNAPSHOT.
Once again, awesome framework!!!
:-)