Example #1
0
        public async Task CreateGroup()
        {
            List <string> lights = new List <string>()
            {
                "1", "2"
            };

            try
            {
                string groupId = await _client.CreateGroup(lights);
            }
            catch (Exception e)
            {
            }
        }