Skip to content

Commit d31d2f3

Browse files
authored
Add LG Dark room Mode (#459)
1 parent 5c62273 commit d31d2f3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ColorControl/Services/LG/LgDevice.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,8 @@ public LgDevice(string name, string ipAddress, string macAddress, bool isCustom
228228
AddGenericPictureAction("lowLevelAdjustment", minValue: -30, maxValue: 30, category: "other", title: "Fine Tune Dark Areas", fromModelYear: ModelYear.Series2019);
229229
AddGenericPictureAction("blackStabilizer", minValue: -30, maxValue: 30, category: "other", title: "Black Stabilizer", fromModelYear: ModelYear.Series2021);
230230
AddGenericPictureAction("whiteStabilizer", minValue: -30, maxValue: 30, category: "other", title: "White Stabilizer", fromModelYear: ModelYear.Series2021);
231-
AddGenericPictureAction("blueLight", typeof(BlueLight), category: "other", title: "Reduce Blue Light", fromModelYear: ModelYear.Series2021);
231+
AddGenericPictureAction("blueLight", typeof(OffToLevel2), category: "other", title: "Reduce Blue Light", fromModelYear: ModelYear.Series2021);
232+
AddGenericPictureAction("darkMode", typeof(OffToLevel2), category: "other", title: "Dark room Mode", fromModelYear: ModelYear.Series2022);
232233
AddGenericPictureAction("noiseReduction", typeof(OffToHigh), title: "Noise Reduction");
233234
AddGenericPictureAction("mpegNoiseReduction", typeof(OffToHigh), title: "MPEG Noise Reduction");
234235

Shared/Contracts/LG/LgEnums.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public enum InputOptimization
247247
boost
248248
}
249249

250-
public enum BlueLight
250+
public enum OffToLevel2
251251
{
252252
off,
253253
level1,

0 commit comments

Comments
 (0)