public class Launcher { public static void main(final String[] args) throws InterruptedException { SoundpadRemoteControl rc = new SoundpadRemoteControl(); System.out.println(rc.getSoundlist()); rc.playSound(15); rc.uninit(); } }