HI,
i'm trying to talk (using an BlueTooth to IR converter) with a television.
I'm able to connect (slave) converter, but i can't to talk with television.
My problem is that after coverter pairing, i try to send an hex value (Es. 0x18) and i expect to receive an ACKNOLEDGE...but nothing....where is my error??
Below the code (for start i use the base of bluetooth chat example):
Thanks and regards
F
i'm trying to talk (using an BlueTooth to IR converter) with a television.
I'm able to connect (slave) converter, but i can't to talk with television.
My problem is that after coverter pairing, i try to send an hex value (Es. 0x18) and i expect to receive an ACKNOLEDGE...but nothing....where is my error??
Below the code (for start i use the base of bluetooth chat example):
B4X:
Sub btnSend_Click
Dim checkTV As Byte
checkTV = 0x18 ' Hex init data <CAN>
Log("SEND <CAN>: " & checkTV)
AStream.Write(BConv.HexToBytes(checkTV))
End Sub
Thanks and regards
F