55 * License: MIT (http://www.opensource.org/licenses/mit-license.php)
66 *
77 * What it does:
8- * - Adds Beatstep's three sequencers as selectable MIDI inputs ("BSP-S1", "BSP-S2" and "BSP-DRUM"),
9- * using extra short names, so it's more easy to spot which track they are assigned to.
8+ * - Adds Beatstep's three sequencers as selectable MIDI inputs (S1, S2 and DRUM),
109 * (Names are only sensible if you use Beatstep's default settings where Sequencer1 is using MIDI channel 1,
1110 * Sequencer2 using channel 2 and Drum sequencer on MIDI channel 10)
12- * - The other MIDI channels are added as selectable MIDI inputs, too: "BSP-3" to "BSP-9" and "BSP-11" to "BSP-16"
13- * - Since Bitwig 2, the user himself must enable CLOCK for this script,
14- * so Beatstep can start/stop synchronously with Bitwig if it is switched to "USB" sync mode
11+ * - The other MIDI channels are added as selectable MIDI inputs 3-9 and 11-16
12+ * - If Bitwig 2.1 is the clock master, the Beatstep Pro must be switched to "USB" sync mode.
1513 * - Knobs in control mode are mappable. However, as Beatstep Pro doesn't seem to receive CC messages,
1614 * value changes made manually in the Bitwig GUI won't update the value of the mapped Beatstep encoder :(.
1715 *
@@ -23,14 +21,14 @@ loadAPI(2);
2321load ( 'lep/api.js' ) ;
2422load ( 'beatsteppro/BeatstepPro.js' ) ;
2523
26- host . defineController ( 'Arturia Beatstep Pro ( All) ' , 'BSP' , '2.0 ', '6ae51caa-3310-11e5-a151-feff819ffc9f' , 'github@justlep.net ' ) ;
24+ host . defineController ( 'Arturia' , ' Beatstep Pro [ All] ', '2.1 ' , '6ae51caa-3310-11e5-a151-feff819ffc9f' , 'Lennart Pegel ' ) ;
2725// host.addDeviceNameBasedDiscoveryPair(['Arturia BeatStep Pro'], ['Arturia BeatStep Pro']);
2826host . defineMidiPorts ( 1 , 1 ) ;
2927
3028function init ( ) {
3129 lep . setLogLevel ( lep . LOGLEVEL . WARN ) ;
3230 BeatstepPro . getInstanceForAllChannels ( ) ;
33- println ( '\n-------------\nBeatstepPro ready (all sequencers )' ) ;
31+ println ( '\n-------------\nBeatstepPro ready (all channels )' ) ;
3432}
3533
3634/** @Override */
0 commit comments