I have this json object created using the code below:
var jsonString = JsonConvert.SerializeObject(e, Formatting.Indented);
var jObject = JObject.Parse(jsonString);
Console.WriteLine(jsonString);
I get this result:
I need to get the value of RSSI only. Can you please show me? Thank you.