Exemplo n.º 1
0
        // click Show Charateristics button
        private void button7_Click(object sender, EventArgs e)
        {
            listCharacteristic.Items.Clear();
            var result = ble.GetCharacteristicList();

            for (int i = 0; i < result.Count(); i++)
            {
                listCharacteristic.Items.Add($"{result[i]}");
            }
        }