<?xml version="1.0" encoding="UTF-8"?>
<controller orientation="2" width="-1" height="-1">
	<info>Stupid little example showing some label options. Send Pitchbend and Modulation on channel 1 to port 2.</info>
<!-- 
Labels are set to fill their parent group in both directions and then use the 'maximise' flag to adjust the font size to completely fill available space (width reached first here).
Title attributes contain formating templates (%04X and %03d) to insert received values into the displayed text (the &#10; you might see are HTML entities for linebreaks, they will not show as such in the UI). 
Both labels are also set to a non default font (There is no font control in the UI so far. If you add the attribute in xml, 'default' and 'monospace', evtl. combined with a 'bold' should always be available on Android. You can also put .otf or .ttf files into the app's font directory and reference them as filename.suffix in the attribute. Custom fonts will not get exported with controllers so far, though).
-->   
	<control type="group" weight="0.5">
		<control type="label" title="Pitchbend:&#10;&#10;%04X" width="-1" height="-1" tf="0xF" midi="0xE0,0x7F,0x7F" font="monospace"/>
	</control>
	<control type="group" weight="0.5">
		<control type="label" title="Modulation:&#10;&#10;%03d" midi="0xB0,0x01,0x7F" height="-1" width="-1" tf="0xF" font="default bold"/>
	</control>
</controller>
