Added Get Scenes Method

This commit is contained in:
Markus Bender
2024-02-26 05:32:07 +01:00
parent fdf74f5f52
commit 3c19797f72
4 changed files with 61 additions and 0 deletions

View File

@ -64,6 +64,14 @@ public interface IGoveeHttpService
/// <param name="value">Value 1-100</param>
/// <returns></returns>
Task<ServiceResponse<bool>> SetBrightness(string deviceId, string deviceModel, int value);
/// <summary>
/// Gets a List of all available Govee Scenes for the Device
/// </summary>
/// <param name="deviceId">Device Id Guid as string</param>
/// <param name="deviceModel">Device Model Number as string</param>
/// <returns></returns>
Task<ServiceResponse<List<GoveeScene>>> GetScenes(string deviceId, string deviceModel);
/// <summary>
/// Sets the LightScene of a single Govee Device
/// </summary>