i'm using 32feet library to send AT commands to my phone (using bluetooth), i'm reading responses like this
peerStream.Read(sResponse, 0, sResponse.Length);
Console.WriteLine((System.Text.Encoding.ASCII.GetString(sResponse)));
but it useless, there is other way to use events and subcribe on some event to get responses in real time ?
Thanks