@@ -25,7 +25,7 @@ First [Mk3][21] and [X][22] Launchpad code snippets running now (4/2020).
25
25
26
26
27
27
---
28
- ## STATUS 2020/04 /xx:
28
+ ## STATUS 2020/05 /xx:
29
29
30
30
What's hot, what's not?
31
31
@@ -70,6 +70,10 @@ Successfully tested with Ubuntu 18.04-LTS+. Requires compiling your own PyGame t
70
70
---
71
71
## NEWS
72
72
73
+ ### CHANGES 2020/05/XX:
74
+
75
+ - changed default search string for the original Pro from "Pro" to "Launchpad Pro", for compatibility with Pro-Mk3
76
+
73
77
### CHANGES 2020/04/XX:
74
78
75
79
- added Mk3 Launchpad pull request #48; most of the Mk3 functionality available
@@ -1101,7 +1105,7 @@ Functions requiring a color code have a "...ByCode" naming style.
1101
1105
LaunchpadMk2() -> "Mk2"
1102
1106
LaunchpadMk3() -> "Mk3"
1103
1107
LaunchpadLPX() -> "X"
1104
- LaunchpadPro() -> "Pro"
1108
+ LaunchpadPro() -> "Launchpad Pro"
1105
1109
LaunchControl() -> "Control MIDI"
1106
1110
LaunchControlXL() -> "Control XL"
1107
1111
LaunchKeyMini() -> "Launchkey" (should work for all variants)
@@ -1165,7 +1169,7 @@ Functions requiring a color code have a "...ByCode" naming style.
1165
1169
1166
1170
# open the 1st "Pro"
1167
1171
lp = launchpad.LaunchpadPro() # notice the "Pro" class!
1168
- lp.Open() # equals Open( 0, "Pro" )
1172
+ lp.Open() # equals Open( 0, "Launchpad Pro" )
1169
1173
1170
1174
# open the 1st "XL" with user template 3
1171
1175
lp = launchpad.LaunchControlXL( template = 3 )
@@ -1188,7 +1192,7 @@ Functions requiring a color code have a "...ByCode" naming style.
1188
1192
LaunchpadMk2() -> "Mk2"
1189
1193
LaunchpadMk3() -> "Mk3"
1190
1194
LaunchpadLPX() -> "X"
1191
- LaunchpadPro() -> "Pro"
1195
+ LaunchpadPro() -> "Launchpad Pro"
1192
1196
LaunchControl() -> "Control MIDI"
1193
1197
LaunchControlXL() -> "Control XL"
1194
1198
LaunchKeyMini() -> "Launchkey"
@@ -1200,7 +1204,7 @@ Functions requiring a color code have a "...ByCode" naming style.
1200
1204
lp = lauchpad.Launchpad() # Launchpad "Mk1" or "Classic" class
1201
1205
if lp.Check( 0, "Pro" ): # check for "Pro"
1202
1206
lp = launchpad.LaunchpadPro() # "reload" the new class for the "Pro"
1203
- lp.Open() # equals lp.Open( 0, "Pro" )
1207
+ lp.Open() # equals lp.Open( 0, "Launchpad Pro" )
1204
1208
1205
1209
Search patterns are case insensitive.
1206
1210
0 commit comments