I have a device that can be communicated with over LTE
with the same functionality as you normally get through BLE
.
However, I'm having a hard time understanding how you communicate with, and get callbacks from an LTE
device in the same way you do with BLE.
It doesn't seem that there is a library like CoreLTE
but is there a standard way to use LTE
like we use BLE
(CoreBLE
)?
In other words, how does one do essentially something line:
func lteCentralManager(lteCentral:LTECentralManager, didDiscoverPeripheral ltePeripheral:LTEPeripheral,
...
lteManager.connectPeripheral(ltePeripheral, options:nil)
...
NOTE: I realize that the technologies are different. The above is only meant to make the point of what I'm trying to do - not imply that the calls would be the same.
If there is no standard way to do this, does anyone know a good place to start figuring it out with iOS? I've read the standards. I'm just looking for how to use it now in iOS.
Thanks for the help.