I'll try to explain BT implementation as simple I can.
The BT implementation in Ds is sorry a serial port on the regular Serial Port Profile prior BLE or Bluetooth Low energy.
This means that it will behave like full duplex serial port, the same it used to be on old pc's and microcontrollers.
The channel you mentioned is nothing like that, but the device you will be connecting to. You need to make sure it supports SPP. HC-05 is a quite common bluetooth SPP slave to UART to enable BT capabilities on microcontrollers like the arduino.
To use the serial BT, basically yo do the next process.
Instantiate the but serial.
Set callback for OnConnect event
Set callback for On receive event
Set split mode, this means we to make the received data is passed to the on receive method.
CONNECT to a device.
Once connected, you can write data to it. And you can receive data.
What info/data, I don't know, you only know that it will be at string format, it's a stream, you can put anything as long it can be represented using ASCII chars.
The protocol is up to you, there are plenty at arduino page. You can create your own, I have developed different protocols depending on my needs.
Regards,
Sankarshan
I don't know if the Ds implementation is the same or not. Only Dave can tell.