Mr Blue Sky Active Member Licensed User Longtime User Feb 7, 2024 #1 Good morning, I have a little misunderstanding problem with the BLE2 library and an HM-10 type module I communicate perfectly in the direction TX Android to module, however from the module to Android RX I cannot receive my data? I have, manager.ReadData(UUID("ffe0")) or manager.ReadData2(UUID("ffe0"), UUID("ffe1")) which returns me to Manager_DataAvailable with Dim BC As ByteConverter Dim b() As Byte = Characteristics.Get(UUID("ffe1")) Log("Value: " & BC.HexFromBytes(b)) Click to expand... But I display what I send but not what I receive in return? I must have missed something?
Good morning, I have a little misunderstanding problem with the BLE2 library and an HM-10 type module I communicate perfectly in the direction TX Android to module, however from the module to Android RX I cannot receive my data? I have, manager.ReadData(UUID("ffe0")) or manager.ReadData2(UUID("ffe0"), UUID("ffe1")) which returns me to Manager_DataAvailable with Dim BC As ByteConverter Dim b() As Byte = Characteristics.Get(UUID("ffe1")) Log("Value: " & BC.HexFromBytes(b)) Click to expand... But I display what I send but not what I receive in return? I must have missed something?
Mr Blue Sky Active Member Licensed User Longtime User Feb 7, 2024 #2 WhoIsShmoove said: Good morning, I have a little misunderstanding problem with the BLE2 library and an HM-10 type module I communicate perfectly in the direction TX Android to module, however from the module to Android RX I cannot receive my data? I have, manager.ReadData(UUID("ffe0")) or manager.ReadData2(UUID("ffe0"), UUID("ffe1")) which returns me to Manager_DataAvailable with But I display what I send but not what I receive in return? I must have missed something? Click to expand... manager.SetNotify(UUID("ffe0"),UUID("ffe1"),True) Click to expand... Upvote 0
WhoIsShmoove said: Good morning, I have a little misunderstanding problem with the BLE2 library and an HM-10 type module I communicate perfectly in the direction TX Android to module, however from the module to Android RX I cannot receive my data? I have, manager.ReadData(UUID("ffe0")) or manager.ReadData2(UUID("ffe0"), UUID("ffe1")) which returns me to Manager_DataAvailable with But I display what I send but not what I receive in return? I must have missed something? Click to expand... manager.SetNotify(UUID("ffe0"),UUID("ffe1"),True) Click to expand...