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