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

Special SysEx Message problem with higher Range than 7 bit

Special SysEx Message problem with higher Range than 7 bit

2013-11-27 by <djheikotnt@...>

Hey Guys,

I wanna sending a sysex string to my RS7000 to control the Send1 Delay Effect via Encoder.

"The Range is 1-14860" (Delay Time 0.1ms - 1486.0ms)

F0 43 10 6A 01 02 02 00 val F7

Tried the following code:

# 1 DELAY TIME L - 0.1 ~ 1486.0ms (only an info text)

$encoder 33
.showvalue on
.mode 1dot
.resolution 96 192 384 768
.default 1
.minmax 1 14860
.tx $F0 $43 $10 $6A $01 $02 $02 val0.6 val7.13 $F7

I know this message is not correct...because the Vlue wraps around after the big range needs a higher resolution.
Could it be 14bit?

I uploaded a sreenshot of the RS7000 manual.

please help me :-)


cheers

TNT

Attachments

RE: Special SysEx Message problem with higher Range than 7 bit

2013-11-27 by <djheikotnt@...>

Sorry the Range is "1 to 1486" (not 1 to 14860)



---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Hey Guys,

I wanna sending a sysex string to my RS7000 to control the Send1 Delay Effect via Encoder.

"The Range is 1-14860" (Delay Time 0.1ms - 1486.0ms)

F0 43 10 6A 01 02 02 00 val F7

Tried the following code:

# 1 DELAY TIME L - 0.1 ~ 1486.0ms (only an info text)

$encoder 33
.showvalue on
.mode 1dot
.resolution 96 192 384 768
.default 1
.minmax 1 14860
.tx $F0 $43 $10 $6A $01 $02 $02 val0.6 val7.13 $F7

I know this message is not correct...because the Vlue wraps around after the big range needs a higher resolution.
Could it be 14bit?

I uploaded a sreenshot of the RS7000 manual.

please help me :-)


cheers

TNT

RE: RE: Special SysEx Message problem with higher Range than 7 bit

2013-11-27 by <djheikotnt@...>

Yes it is 1 to 14860 :-D



---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Sorry the Range is "1 to 1486" (not 1 to 14860)

Show quoted textHide quoted text
---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Hey Guys,

I wanna sending a sysex string to my RS7000 to control the Send1 Delay Effect via Encoder.

"The Range is 1-14860" (Delay Time 0.1ms - 1486.0ms)

F0 43 10 6A 01 02 02 00 val F7

Tried the following code:

# 1 DELAY TIME L - 0.1 ~ 1486.0ms (only an info text)

$encoder 33
.showvalue on
.mode 1dot
.resolution 96 192 384 768
.default 1
.minmax 1 14860
.tx $F0 $43 $10 $6A $01 $02 $02 val0.6 val7.13 $F7

I know this message is not correct...because the Vlue wraps around after the big range needs a higher resolution.
Could it be 14bit?

I uploaded a sreenshot of the RS7000 manual.

please help me :-)


cheers

TNT

RE: Special SysEx Message problem with higher Range than 7 bit

2013-11-30 by <rpcfender@...>

Hi

when I look at the manual, the parameter at address 01 02 02 is the 'Effect Variation Parameter 1'

The data is described as MSB then LSB (page 329) so the messages should be be


.tx $F0 $43 $10 $6A $01 $02 $02 val7.13 val0.6 $F7

You had the values reversed.


The values are 14bit 0 to 6 = LSB 7bits, 7.13 = MSB 7 bits


I don't have an RS7000 to test, so let me know how you get on.


All the best

Royce




---In bc2000@yahoogroups.com, <djheikotnt@arcor.de> wrote:

Yes it is 1 to 14860 :-D

Show quoted textHide quoted text
---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Sorry the Range is "1 to 1486" (not 1 to 14860)



---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Hey Guys,

I wanna sending a sysex string to my RS7000 to control the Send1 Delay Effect via Encoder.

"The Range is 1-14860" (Delay Time 0.1ms - 1486.0ms)

F0 43 10 6A 01 02 02 00 val F7

Tried the following code:

# 1 DELAY TIME L - 0.1 ~ 1486.0ms (only an info text)

$encoder 33
.showvalue on
.mode 1dot
.resolution 96 192 384 768
.default 1
.minmax 1 14860
.tx $F0 $43 $10 $6A $01 $02 $02 val0.6 val7.13 $F7

I know this message is not correct...because the Vlue wraps around after the big range needs a higher resolution.
Could it be 14bit?

I uploaded a sreenshot of the RS7000 manual.

please help me :-)


cheers

TNT

RE: Special SysEx Message problem with higher Range than 7 bit

2013-12-01 by <djheikotnt@...>

hey Royce,


ahhh, Ok i understood. The MSB Value need to be first.


i found it out. :-D


The following code works perfectly


# 1 DELAY TIME L - 0.1 ~ 1486.0ms

$encoder 1
.showvalue on
.mode 1dot
.resolution 96 192 384 3072
.default 7500
.minmax 1 14860
.tx $F0 $43 $10 $6A $01 $02 $02 val7.13 val $F7


Thanx Roys


BTW: in a couple of weeks i'll be uploading all my files. I wrote all SysEx Messages for Roland GS standard (incl. all effects,source & destination matrices, NRPN to control GS-Drum edit for pitch,volume,Reverb/Delay & Chorus/Flanger for each drumnote) It's useable for MC-303 (page 103,107-110) and EG-101 (page 4,8-10)


thx roys for your tips :-D


cheers from germany



---In bc2000@yahoogroups.com, <rpcfender@...> wrote:

Hi

when I look at the manual, the parameter at address 01 02 02 is the 'Effect Variation Parameter 1'

The data is described as MSB then LSB (page 329) so the messages should be be


.tx $F0 $43 $10 $6A $01 $02 $02 val7.13 val0.6 $F7

You had the values reversed.


The values are 14bit 0 to 6 = LSB 7bits, 7.13 = MSB 7 bits


I don't have an RS7000 to test, so let me know how you get on.


All the best

Royce


Show quoted textHide quoted text
---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Yes it is 1 to 14860 :-D



---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Sorry the Range is "1 to 1486" (not 1 to 14860)



---In bc2000@yahoogroups.com, <djheikotnt@...> wrote:

Hey Guys,

I wanna sending a sysex string to my RS7000 to control the Send1 Delay Effect via Encoder.

"The Range is 1-14860" (Delay Time 0.1ms - 1486.0ms)

F0 43 10 6A 01 02 02 00 val F7

Tried the following code:

# 1 DELAY TIME L - 0.1 ~ 1486.0ms (only an info text)

$encoder 33
.showvalue on
.mode 1dot
.resolution 96 192 384 768
.default 1
.minmax 1 14860
.tx $F0 $43 $10 $6A $01 $02 $02 val0.6 val7.13 $F7

I know this message is not correct...because the Vlue wraps around after the big range needs a higher resolution.
Could it be 14bit?

I uploaded a sreenshot of the RS7000 manual.

please help me :-)


cheers

TNT

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.