I was trying to play with my Launchpad Mini and I used this code:
import novation_launchpad as launchpad
import time
print(launchpad.Launchpad().Check(name="Mini"))
def main():
lp = launchpad.Launchpad()
if lp.Open( 0, "Mini" ):
print( " - Launchpad Mk2: OK" )
else:
print( " - Launchpad Mk2: ERROR" )
return
time.sleep(0.005)
lp.ButtonFlush()
lp.LedAllOn(5)
time.sleep(1)
lp.Reset()
lp.Close()
if __name__ == '__main__':
main()
Output:
But nothing happened to my Launchpad. I tested in every mode (drums, keys and user).
I was trying to play with my Launchpad Mini and I used this code:
Output:
But nothing happened to my Launchpad. I tested in every mode (drums, keys and user).