Daqarta
Data AcQuisition And Real-Time Analysis
Scope - Spectrum - Spectrogram - Signal Generator
Software for Windows
Science with your Sound Card!
The following is from the Daqarta Help system:

Features:

Oscilloscope

Spectrum Analyzer

8-Channel
Signal Generator

(Absolutely FREE!)

Spectrogram

Pitch Tracker

Pitch-to-MIDI

DaqMusiq Generator
(Free Music... Forever!)

Engine Simulator

LCR Meter

Remote Operation

DC Measurements

True RMS Voltmeter

Sound Level Meter

Frequency Counter
    Period
    Event
    Spectral Event

    Temperature
    Pressure
    MHz Frequencies

Data Logger

Waveform Averager

Histogram

Post-Stimulus Time
Histogram (PSTH)

THD Meter

IMD Meter

Precision Phase Meter

Pulse Meter

Macro System

Multi-Trace Arrays

Trigger Controls

Auto-Calibration

Spectral Peak Track

Spectrum Limit Testing

Direct-to-Disk Recording

Accessibility

Applications:

Frequency response

Distortion measurement

Speech and music

Microphone calibration

Loudspeaker test

Auditory phenomena

Musical instrument tuning

Animal sound

Evoked potentials

Rotating machinery

Automotive

Product test

Contact us about
your application!

_Color_Tint Macro

The _Color_Tint macro is one of the Macro Examples and Mini-Apps included with Daqarta. It allows you to derive a lighter or darker version of an existing color.

On input, user variable QC is the color to be adjusted, and QS is the adjustment value. The lighter or darker result is returned in QC.

Typically, you would use the ColorNum macro to obtain QC for a specified display color, such as QC=ColorNum?c to get the color of the input or output channel specified previously via the Channel Select variable Ch.

QS is a signed integer that will be added separately to each of the Red, Green, and Blue color components of QC. Each will be automatically limited to the range 0-255.

If QS is positive, the overall color retains its same hue but becomes lighter ("tint"). If QS is negative, the color becomes darker ("shade").

As an example, the Pulse Meter Mini-App includes an option (by setting UD=0 instead of the default UD=1) to use Custom Meters with black text on colored backgrounds. The backgrounds are lighter versions of the colors used to draw the main display traces for each input or output channel. This allows you to see at a glance which meter goes with which channel. In this case, _Color_Tint is used with QS=160 to get the lighter tint values.


_Color_Tint Macro Listing:

;<Help=H491C
QR=QC & hFF                    ;Isolate Red component
QG=int(QC>>8) & hFF            ;Green
QB=int(QC>>16) & hFF           ;Blue
QR=QR+QS                       ;Adjust Red
QR=lim(QR,0,255)               ;Limit Red to 0-255
QG=QG+QS                       ;Adjust Green
QG=lim(QG,0,255)               ;Limit Green to 0-255
QB=QB+QS                       ;Adjust Blue
QB=lim(QB,0,255)               ;Limit Blue to 0-255
QC=QR + QG<<8 + QB<<16         ;Reassemble changed color

See also Colors & Line Styles Dialog, colr() Function.

GO:

Questions? Comments? Contact us!

We respond to ALL inquiries, typically within 24 hrs.
INTERSTELLAR RESEARCH:
Over 35 Years of Innovative Instrumentation
© Copyright 2007 - 2023 by Interstellar Research
All rights reserved