2020-05-16 18:31:25 +00:00
|
|
|
package queue
|
|
|
|
|
2020-05-17 12:25:46 +00:00
|
|
|
type RGBcolor = [3]byte
|
|
|
|
|
2020-05-16 18:31:25 +00:00
|
|
|
type QueueItem struct {
|
|
|
|
Effect string
|
|
|
|
Duration uint16
|
|
|
|
Speed uint16 //only used by some patterns
|
2020-05-17 12:25:46 +00:00
|
|
|
SeedColour RGBcolor // only used by some patterns
|
|
|
|
SecondColour RGBcolor // only used by some patterns
|
2020-05-16 18:31:25 +00:00
|
|
|
}
|