예제 #1
0
        public async Task <string> ConnectBrick()
        {
            try
            {
                await Ev3Brick.ConnectAsync();

                return("Brick Connected");
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }