-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed special treatment for odd-even color wheels and replaced by c…
…onfiguration flags within scenes group.
- Loading branch information
Showing
5 changed files
with
2,257 additions
and
2,472 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
...n/kotlin/de/visualdigits/kotlin/klanglicht/hardware/lightmanager/model/lm/LMSceneGroup.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package de.visualdigits.kotlin.klanglicht.hardware.lightmanager.model.lm | ||
|
||
class LMSceneGroup( | ||
val name: String = "", | ||
val hasColorWheel: Boolean = false, | ||
val colorWheelOddEven: Boolean = false, | ||
val scenes: MutableList<LMScene> = mutableListOf() | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.