User manual

The eight DAC-channels of the selected 6-bit Digital to Analogue Converter chip are set to
minimum (Vmin).
Example
BEGIN
ClearDACchip(0);
// DAC channels 1...8 are at Vmin
END;
ClearAllDAC DAC
Syntax
PROCEDURE ClearAllDAC;
Result
All DAC-channels are set to minimum output voltage.
Description
All DAC-channels of the 6-bit Digital to Analogue Converters are set to minimum output voltage
(Vmin) .
Example
BEGIN
ClearAllDAC;
// All DAC channels 1...32 are at Vmin
END;
SetDACchannel DAC
Syntax
PROCEDURE SetDACchannel(Channel_no: Longint);
Parameter
Channel_no: Value between 1 and 32 which corresponds to the 6-bit DAC channel number in
which the data is to be set to maximum.
Result
The selected DAC-channel is set to maximum output voltage.
Description
The selected 6-bit Digital to Analogue Converter channel is set to maximum output voltage.
Example
BEGIN
SetDACchannel(3);
// Set DAC channel 3 at Vmax
END;