View Single Post
Old 02-12-2020, 07:30 PM   #6524
Dberman
Human being with feelings
 
Join Date: Jan 2020
Posts: 36
Default

Quote:
Originally Posted by MixMonkey View Post
This makes perfect sense, otherwise what would be the point of having various MCU modes, when an MCU has 9 faders, not 1.

@Dberman, why not try a plain vanilla MCU zone and see if the fader(s) play ball:

I've cut down an MCU.mst to go with, see next post.
@MixMonkey, I gave this a try and I am still convinced there are no virtual controls on the X-Touch One. I have *almost* everything working, and I have a feeling my zone file is the cause of the remaining issues.
- Channel Select button is on when track 1 is selected. All functions work - mute, solo, arm, automation mode, etc. If I select any other track with the mouse, none of those work. Also, the fader controls the master track when the Channel Select button is lit.
- Master Select button does not select the master track and does not control the fader movement for the master track.

So, I hate to be a pain, but I'm posting my mst and zon again to see if you or anyone can spot the problem. I don't really understand how the navigators and zones work together, and that's probably part of my issue (also read: dumbass can't figure this out).

Having said all that, once I get this working, my next step will be to use some of the buttons on the X-TO to focus plugins and see if I can set params with the fader or rotary.

mst:
Code:
/Top row of buttons on X-T One)

Widget smpteBeats
    Press 90 35 7F
WidgetEnd

Widget TimeDisplay
    FB_MCUTimeDisplay
WidgetEnd

/Is there an action to select master track?

Widget ChannelSelect
    Press 90 18 7F
    FB_TwoState 90 18 7F 90 18 00
WidgetEnd

Widget ChannelMute
    Press 90 10 7F
    FB_TwoState 90 10 7F 90 10 00
WidgetEnd 

Widget ChannelSolo
    Press 90 08 7F
    FB_TwoState 90 08 7F 90 08 00
WidgetEnd

Widget RecordArm
    Press 90 00 7F
    FB_TwoState 90 00 7F 90 00 00
WidgetEnd

/2nd row of buttons on X-T One)

Widget Read
    Press 90 36 7F
    FB_TwoState 90 36 7F 90 36 00
WidgetEnd

Widget Write
    Press 90 37 7F
    FB_TwoState 90 37 7F 90 37 00
WidgetEnd

Widget Trim
    Press 90 38 7F
    FB_TwoState 90 38 7F 90 38 00
WidgetEnd

Widget Touch
    Press 90 39 7F
    FB_TwoState 90 38 7F 90 39 00
WidgetEnd

Widget Latch
    Press 90 3A 7F
    FB_TwoState 90 3A 7F 90 3A 00
WidgetEnd

Widget Click
    Press 90 4B 7F
    FB_TwoState 90 4B 7F 90 4B 00
WidgetEnd

/3rd row of buttons on X-T One)

Widget Marker
    Press 90 54 7F
WidgetEnd

Widget Loop
    Press 90 56 7F
    FB_TwoState 90 56 7F 90 56 00
WidgetEnd

Widget Undo
  Press 90 51 7F
WidgetEnd

Widget Redo
  Press 90 59 7F
WidgetEnd

Widget Save
  Press 90 5A 7F
WidgetEnd

/Transport buttons on X-T One

Widget Rewind
  Press 90 5B 7F
  FB_TwoState 90 5B 7F 90 5B 00
WidgetEnd

Widget FastForward
  Press 90 5C 7F
    FB_TwoState 90 5C 7F 90 5C 00
WidgetEnd

Widget Stop
    Press 90 5D 7F
    FB_TwoState 90 5D 7F 90 5D 00
WidgetEnd

Widget Play
    Press 90 5E 7F
    FB_TwoState 90 5E 7F 90 5E 00
WidgetEnd

Widget Record
    Press 90 5F 7F
    FB_TwoState 90 5F 7F 90 5F 00
WidgetEnd

/Rotary encoder on X-T One

Widget Rotary
  Encoder B0 10 01
WidgetEnd

Widget RotaryPush
    Press 90 20 7F
WidgetEnd

/Navigation buttons on X-T One

Widget MarkerLeft
    Press 90 2E 7F
WidgetEnd

Widget MarkerRight
  Press 90 2F 7F
WidgetEnd

Widget ChannelLeft
  Press 90 30 7F
WidgetEnd

Widget ChannelRight
  Press 90 31 7F
WidgetEnd

Widget Zoom
    Press 90 64 7F
    FB_TwoState 90 64 7F 90 64 00
WidgetEnd

Widget ZoomTimelineIn
  Press 90 63 7F
WidgetEnd

Widget ZoomTimelineOut
    Press 90 62 7F
WidgetEnd

Widget ZoomTracksOut
  Press 90 60 7F
WidgetEnd

Widget ZoomTracksIn
    Press 90 61 7F
WidgetEnd

/Jog Wheel on X-T One

Widget JogWheelRotaryCW
	Press B0 3C 01
WidgetEnd

Widget JogWheelRotaryCCW
	Press B0 3C 41
WidgetEnd

Widget Scrub
	Press 90 65 7F
	FB_TwoState 90 65 00
Widget End

/Fader on X-T One

Widget Fader1
	Fader14Bit E0 7F 7F
	FB_Fader14Bit E0 7F 7F
WidgetEnd
zon:
Code:
Zone Home
	OnTrackSelection MapSelectedTrackSendsToWidgets
	IncludedZones
		"SelChannelButtons|"
		"MasterButtons|"
		"GlobalButtons|"
		"Channel|"
	IncludedZonesEnd
ZoneEnd

Zone "SelChannelButtons|"
	TrackNavigator

	ChannelSelect  TrackSelect	
	ChannelMute    TrackMute
	ChannelSolo    TrackSolo
	RecordArm      TrackRecordArm

	Read 	TrackAutoMode 1
	Write 	TrackAutoMode 3
	Trim 	TrackAutoMode 0
	Touch 	TrackAutoMode 2	
        Latch 	TrackAutoMode 4
ZoneEnd

Zone "MasterButtons|"
	MasterTrackNavigator

	Fader1    TrackVolume
ZoneEnd

Zone "GlobalButtons|"
	smpteBeats CycleTimeDisplayModes
	TimeDisplay TimeDisplay

	Rewind      Rewind
	FastForward FastForward
	Stop        Stop
	Play        Play
	Record      Record

	Undo Reaper 40029
	Redo Reaper 40030
	Save Reaper 40026

	Loop  Reaper 1068
	Click Reaper 40364

	Zoom 
	ZoomTimelineOut Reaper 1011
	ZoomTimelineIn  Reaper 1012
	ZoomTracksOut   Reaper 40112
	ZoomTracksIn    Reaper 40111
	
        ChannelLeft  Reaper 40286
	ChannelRight Reaper 40285
	
	Marker       Reaper 40157
	MarkerLeft   Reaper 40172
	MarkerRight  Reaper 40173

	JogWheelRotaryCW  Reaper "40647" 
	JogWheelRotaryCCW Reaper "40646"
	Scrub		  Reaper "974"
ZoneEnd

Zone "Channel|"
	SelectedTrackNavigator
	
	ChannelSelect  TrackSelect
	Rotary		TrackPan 1	
	RotaryPush	TrackPan 0
	Fader1		TrackVolume
ZoneEnd
Dberman is offline   Reply With Quote