Bc2000 (for the BCF2000 & BCR2000) group photo

Yahoo Groups archive

Bc2000 (for the BCF2000 & BCR2000)

Index last updated: 2026-04-28 23:16 UTC

Thread

Any way to make a bcr2000 button act as a continuous controller?

Any way to make a bcr2000 button act as a continuous controller?

2013-01-16 by Ron Anderson

Is is at all possible to to make a bcr2000 button act as a continuous controller?

I would like two or more greater than zero value midi messages from one click of a particular button for reasons that are just an experiment.

Thanks.

Re: Any way to make a bcr2000 button act as a continuous controller?

2013-01-17 by Royce

--- In bc2000@yahoogroups.com, Ron Anderson  wrote:
>
> Is is at all possible to to make a bcr2000 button act as a continuous controller?
> 
Sure.... for Mod Wheel CC

$button 33  ; 
  .easypar CC  01 07 127 0 increment 1
  .showvalue on
  .default 0
$end

Repeated pressing of the button

$B0  1  0
$B0  1  1
$B0  1  2
...
$B0  1 126 
$B0  1 127 
$B0  1  0
...

> I would like two or more greater than zero value midi messages from one click of a particular button for reasons that are just an experiment.
> 
There are a few ways to do it. Here is one.
For Mod Wheel and Volume on channel 1
$button 33  ; 
  .showvalue on
  .incval 1
  .minmax 10 6
  .default 6
  .tx $B0 1 val
  .tx $B0 7 val
$end

A few clicks
$B0  1 6 
$B0  7 6 
$B0  1 7 
$B0  7 7 
$B0  1 8 
$B0  7 8 
$B0  1 9 
$B0  7 9 
$B0  1 10 
$B0  7 10
$B0  1 6 
$B0  7 6 

All the best
Royce

Re: Any way to make a bcr2000 button act as a continuous controller?

2013-01-17 by rinnmigiroeven

Is this possible with NRPNs as well? As for say the Akai Miniak?





--- In bc2000@yahoogroups.com, "Royce"  wrote:
Show quoted textHide quoted text
>
> 
> 
> --- In bc2000@yahoogroups.com, Ron Anderson  wrote:
> >
> > Is is at all possible to to make a bcr2000 button act as a continuous controller?
> > 
> Sure.... for Mod Wheel CC
> 
> $button 33  ; 
>   .easypar CC  01 07 127 0 increment 1
>   .showvalue on
>   .default 0
> $end
> 
> Repeated pressing of the button
> 
> $B0  1  0
> $B0  1  1
> $B0  1  2
> ...
> $B0  1 126 
> $B0  1 127 
> $B0  1  0
> ...
> 
> > I would like two or more greater than zero value midi messages from one click of a particular button for reasons that are just an experiment.
> > 
> There are a few ways to do it. Here is one.
> For Mod Wheel and Volume on channel 1
> $button 33  ; 
>   .showvalue on
>   .incval 1
>   .minmax 10 6
>   .default 6
>   .tx $B0 1 val
>   .tx $B0 7 val
> $end
> 
> A few clicks
> $B0  1 6 
> $B0  7 6 
> $B0  1 7 
> $B0  7 7 
> $B0  1 8 
> $B0  7 8 
> $B0  1 9 
> $B0  7 9 
> $B0  1 10 
> $B0  7 10
> $B0  1 6 
> $B0  7 6 
> 
> All the best
> Royce
>

Re: Any way to make a bcr2000 button act as a continuous controller?

2013-01-17 by Royce

> Is this possible with NRPNs as well? As for say the Akai Miniak?

Yes (don't know the Miniak NRPNs though)

  $button 33  ;
  .easypar NRPN 01 349 127 0 increment 1         ; 01 = channel,
349=14bit NRPN number ,127=max, 0 =min (both 14bit numbers)
  .showvalue on
  .default 0

$B0 $63 $02
$B0 $62 $5D
$B0 $63 01
$B0 $63 $02
$B0 $62 $5D
$B0 $63 02
$B0 $63 $02
$B0 $62 $5D
$B0 $63 03
...


the same as the above but with 2 NRPN 349 and 350

  $button 33  ;
  .showvalue on
  .incval 1
  .minmax 127 0
  .default 0
  .tx $B0 $63 $02
  .tx $B0 $62 $5D
  .tx $B0 $63 val
.tx $B0 $63 $02
  .tx $B0 $62 $5E
  .tx $B0 $63 val


> > > Is is at all possible to to make a bcr2000 button act as a
continuous controller?
> > >
> > Sure.... for Mod Wheel CC
> >
> > $button 33  ;
> >   .easypar CC  01 07 127 0 increment 1
> >   .showvalue on
> >   .default 0
> > $end
> >
> > Repeated pressing of the button
> >
> > $B0  1  0
> > $B0  1  1
> > $B0  1  2
> > ...
> > $B0  1 126
> > $B0  1 127
> > $B0  1  0
> > ...
> >
> > > I would like two or more greater than zero value midi messages
from one click of a particular button for reasons that are just an
experiment.
Show quoted textHide quoted text
> > >
> > There are a few ways to do it. Here is one.
> > For Mod Wheel and Volume on channel 1
> > $button 33  ;
> >   .showvalue on
> >   .incval 1
> >   .minmax 10 6
> >   .default 6
> >   .tx $B0 1 val
> >   .tx $B0 7 val
> > $end
> >
> > A few clicks
> > $B0  1 6
> > $B0  7 6
> > $B0  1 7
> > $B0  7 7
> > $B0  1 8
> > $B0  7 8
> > $B0  1 9
> > $B0  7 9
> > $B0  1 10
> > $B0  7 10
> > $B0  1 6
> > $B0  7 6
> >
> > All the best
> > Royce
> >
>

Re: [bc2000] Re: Any way to make a bcr2000 button act as a continuous controller?

2013-01-18 by sghookings@tiscali.co.uk

Take a look at the template I made for Miniak/micron and placed either 
in files or in miniaktools files section.

Load it into Mark's editor 
to see how I did it, or search them posts where  psionic Royce and Mark 
helped me to do this.

Worth looking on micron site form how Lipi dealt 
with negative nrpns.

Regards
Steve H
>----Original Message----
>From: 
rpcfender@...
>Date: 17/01/2013 22:53 
>To: 
<bc2000@yahoogroups.com>
>Subj: [bc2000] Re: Any way to make a bcr2000 
button act as a continuous controller?
>
>> Is this possible with NRPNs 
as well? As for say the Akai Miniak?
>
>Yes (don't know the Miniak 
NRPNs though)
>
>  $button 33  ;
>  .easypar NRPN 01 349 127 0 
increment 1         ; 01 = channel,
>349=14bit NRPN number ,127=max, 0 
=min (both 14bit numbers)
>  .showvalue on
>  .default 0
>
>$B0 $63 $02

>$B0 $62 $5D
>$B0 $63 01
>$B0 $63 $02
>$B0 $62 $5D
>$B0 $63 02
>$B0 $63 
$02
>$B0 $62 $5D
>$B0 $63 03
>...
>
>
>the same as the above but with 2 
NRPN 349 and 350
>
>  $button 33  ;
>  .showvalue on
>  .incval 1
>  .
minmax 127 0
>  .default 0
>  .tx $B0 $63 $02
>  .tx $B0 $62 $5D
>  .tx 
$B0 $63 val
>.tx $B0 $63 $02
>  .tx $B0 $62 $5E
>  .tx $B0 $63 val
>
>

>> > > Is is at all possible to to make a bcr2000 button act as a

>continuous controller?
>> > >
>> > Sure.... for Mod Wheel CC
>> >
>> > 
$button 33  ;
>> >   .easypar CC  01 07 127 0 increment 1
>> >   .
showvalue on
>> >   .default 0
>> > $end
>> >
>> > Repeated pressing of 
the button
>> >
>> > $B0  1  0
>> > $B0  1  1
>> > $B0  1  2
>> > ...

>> > $B0  1 126
>> > $B0  1 127
>> > $B0  1  0
>> > ...
>> >
>> > > I 
would like two or more greater than zero value midi messages
>from one 
click of a particular button for reasons that are just an
>experiment.

>> > >
>> > There are a few ways to do it. Here is one.
>> > For Mod 
Wheel and Volume on channel 1
>> > $button 33  ;
>> >   .showvalue on

>> >   .incval 1
>> >   .minmax 10 6
>> >   .default 6
>> >   .tx $B0 1 
val
Show quoted textHide quoted text
>> >   .tx $B0 7 val
>> > $end
>> >
>> > A few clicks
>> > $B0  1 6

>> > $B0  7 6
>> > $B0  1 7
>> > $B0  7 7
>> > $B0  1 8
>> > $B0  7 8

>> > $B0  1 9
>> > $B0  7 9
>> > $B0  1 10
>> > $B0  7 10
>> > $B0  1 6

>> > $B0  7 6
>> >
>> > All the best
>> > Royce
>> >
>>
>
>
>

Re: [bc2000] Re: Any way to make a bcr2000 button act as a continuous controller?

2013-01-19 by Ron Anderson

Thanks everyone.

Hold my beer, I'm gonna try somthin'



--- On Fri, 1/18/13, sghookings@... <sghookings@...> wrote:

From: sghookings@... <sghookings@...>
Subject: Re: [bc2000] Re: Any way to make a bcr2000 button act as a continuous controller?
To: bc2000@yahoogroups.com
Date: Friday, January 18, 2013, 6:54 AM








 



  


    
      
      
      

Take a look at the template I made for Miniak/micron and placed either 

in files or in miniaktools files section.



Load it into Mark's editor 

to see how I did it, or search them posts where  psionic Royce and Mark 

helped me to do this.



Worth looking on micron site form how Lipi dealt 

with negative nrpns.



Regards

Steve H

>----Original Message----

>From: 

rpcfender@...

>Date: 17/01/2013 22:53 

>To: 

bc2000@yahoogroups.com>

>Subj: [bc2000] Re: Any way to make a bcr2000 

button act as a continuous controller?

>

>> Is this possible with NRPNs 

as well? As for say the Akai Miniak?

>

>Yes (don't know the Miniak 

NRPNs though)

>

>  $button 33  ;

>  .easypar NRPN 01 349 127 0 

increment 1         ; 01 = channel,

>349=14bit NRPN number ,127=max, 0 

=min (both 14bit numbers)

>  .showvalue on

>  .default 0

>

>$B0 $63 $02



>$B0 $62 $5D

>$B0 $63 01

>$B0 $63 $02

>$B0 $62 $5D

>$B0 $63 02

>$B0 $63 

$02

>$B0 $62 $5D

>$B0 $63 03

>...

>

>

>the same as the above but with 2 

NRPN 349 and 350

>

>  $button 33  ;

>  .showvalue on

>  .incval 1

>  .

minmax 127 0

>  .default 0

>  .tx $B0 $63 $02

>  .tx $B0 $62 $5D

>  .tx 

$B0 $63 val

>.tx $B0 $63 $02

>  .tx $B0 $62 $5E

>  .tx $B0 $63 val

>

>



>> > > Is is at all possible to to make a bcr2000 button act as a



>continuous controller?

>> > >

>> > Sure.... for Mod Wheel CC

>> >

>> > 

$button 33  ;

>> >   .easypar CC  01 07 127 0 increment 1

>> >   .

showvalue on

>> >   .default 0

>> > $end

>> >

>> > Repeated pressing of 

the button

>> >

>> > $B0  1  0

>> > $B0  1  1

>> > $B0  1  2

>> > ...



>> > $B0  1 126

>> > $B0  1 127

>> > $B0  1  0

>> > ...

>> >

>> > > I 

would like two or more greater than zero value midi messages

>from one 

click of a particular button for reasons that are just an

>experiment.



>> > >

>> > There are a few ways to do it. Here is one.

>> > For Mod 

Wheel and Volume on channel 1

>> > $button 33  ;

>> >   .showvalue on



>> >   .incval 1

>> >   .minmax 10 6

>> >   .default 6

>> >   .tx $B0 1 

val
Show quoted textHide quoted text
>> >   .tx $B0 7 val

>> > $end

>> >

>> > A few clicks

>> > $B0  1 6



>> > $B0  7 6

>> > $B0  1 7

>> > $B0  7 7

>> > $B0  1 8

>> > $B0  7 8



>> > $B0  1 9

>> > $B0  7 9

>> > $B0  1 10

>> > $B0  7 10

>> > $B0  1 6



>> > $B0  7 6

>> >

>> > All the best

>> > Royce

>> >

>>

>

>

>

Move to quarantaine

This moves the raw source file on disk only. The archive index is not changed automatically, so you still need to run a manual refresh afterward.