manual/_manual/22_using-control-surfaces/01_controlling-ardour-with-osc/03_calculating-feedback-and...

123 lines
3.5 KiB
HTML
Raw Normal View History

---
layout: default
title: Calculating Feedback and Strip-types Values
---
<p><em>/set_surface</em> has two values the user needs to calculate before
use. In general these will not be calculated at run time, but
beforehand. There may be more than one button with different values
to turn various kinds of feedback on or off or to determine which
kinds of strips are currently viewed/controlled.
</p>
<p>Both ,<em>feedback</em> and <em>strip-types</em> use bitsets to keep
track what they are doing. Any number in a computer is made out of
2016-07-16 20:44:14 -04:00
bits that are on or off, but we represent them as normal base 10
numbers. Any one bit turned on will add a unique value to the
number as a whole. So for each kind of feedback or strip type
to be used, that number should be added to the total.</p>
<h3>strip_types</h3>
<p>
strip_types is an integer made up of bits. The easy way to
deal with this is to think of strip_types items being worth a number and
then adding all those numbers together for a value to send.
Strip Types will determine What kind of strips will be included in
bank. This would include: Audio, MIDI, busses, VCAs, Master, Monitor
and hidden or selected strips.
</p>
<ul>
<li>
1 - AudioTracks.
</li>
<li>
2 - MidiTracks.
</li>
<li>
2016-07-16 20:44:14 -04:00
4 - AudioBuses.
</li>
<li>
2016-07-16 20:44:14 -04:00
8 - MidiBuses.
</li>
<li>
16 - VCAs.
</li>
<li>
2016-07-16 20:44:14 -04:00
32 - Master.
</li>
<li>
2016-07-16 20:44:14 -04:00
64 - Monitor.
</li>
<li>
2016-07-16 20:44:14 -04:00
256 - Selected.
</li>
<li>
2016-07-16 20:44:14 -04:00
512 - Hidden.
</li>
</ul>
2016-07-16 20:44:14 -04:00
<p class="note">
Selected and Hidden bits are normally not needed as Ardour defaults to
showing Selected strips and not showing Hidden strips. The purpose of
these two flags is to allow showing only Selected strips or only
Hidden strips. Using Hidden with other flags will allow Hidden strips
to show inline with other strips.
</p>
<p>
2016-07-16 20:44:14 -04:00
Some handy numbers to use might be: 15 (all tracks and buses), 31
(add VCAs to that). Master or Monitor strips are generally not useful
on a surface that has dedicated controls for these strips as there are
/master* and /monitor* commands already. However, on a surface with
just a bank of fader strips, adding master or monitor would allow
access to them within the banks. Selected would be useful for working
on a group or a set of user selected strips. Hidden shows strips the
GUI has hidden.
</p>
<h3>feedback</h3>
<p>Feedback is an integer made up of bits. The easy way to
deal with this is to think of feedback items being worth a number and
then adding all those numbers together for a value to send.
</p>
<ul>
<li>
1 - Button status for strips.
</li>
<li>
2 - Variable control values for strips.
</li>
<li>
2016-05-31 17:36:17 -04:00
4 - Send SSID as path extension.
</li>
<li>
8 - heartbeat to surface.
</li>
<li>
16 - Enable master section feedback.
</li>
<li>
2016-05-31 17:36:17 -04:00
32 - Send Bar and Beat.
</li>
<li>
2016-05-31 17:36:17 -04:00
64 - Send timecode.
</li>
<li>
2016-05-31 17:36:17 -04:00
128 - Send meter as dB (-193 to +6) or 1024 depending on gainmode
</li>
<li>
256 - Send meter a 16 bit value where each bit is a level
and all bits of lower level are on. For use in a LED strip. This
will not work if the above option is turned on.
</li>
<li>
2016-07-16 20:44:14 -04:00
512 - Send signal present, true if level is higher than -40dB
</li>
<li>
1024 - Send position in samples
</li>
<li>
2048 - Send position in time, hours, minutes, seconds and milliseconds
</li>
</ul>
<p>
So using a value of 19 would turn on feedback for strip and master
controls, but leave meters, timecode and bar/beat feedback off.
</p>