-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPatternListProvider.kt
More file actions
84 lines (84 loc) · 1.82 KB
/
Copy pathPatternListProvider.kt
File metadata and controls
84 lines (84 loc) · 1.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
class PatternListProvider {
fun getPatterns() = listOf(
Pattern(
name = "Rainbow Pulsating",
index = 37
),
Pattern(
name = "Red Pulsating",
index = 38
),
Pattern(
name = "Green Pulsating",
index = 39
),
Pattern(
name = "Blue Pulsating",
index = 40,
),
Pattern(
name = "Yellow Pulsating",
index = 41,
),
Pattern(
name = "Cyan Pulsating",
index = 42,
),
Pattern(
name = "Purple Pulsating",
index = 43,
),
Pattern(
name = "White Pulsating",
index = 44,
),
Pattern(
name = "Red/Green Pulsating",
index = 45,
),
Pattern(
name = "Red/Blue Pulsating",
index = 46,
),
Pattern(
name = "Green/Blue Pulsating",
index = 47,
),
Pattern(
name = "Rainbow Flashing",
index = 48,
),
Pattern(
name = "Red Flashing",
index = 49,
),
Pattern(
name = "Green Flashing",
index = 50,
),
Pattern(
name = "Blue Flashing",
index = 51,
),
Pattern(
name = "Yellow Flashing",
index = 52,
),
Pattern(
name = "Cyan Flashing",
index = 53,
),
Pattern(
name = "Purple Flashing",
index = 54,
),
Pattern(
name = "White Flashing",
index = 55,
),
Pattern(
name = "Rainbow Jumping",
index = 56,
)
)
}