User manual

Example
BEGIN
OutputDAchannel(1,127);
// DA channel 1 is at 1/2 Vmax
END;
ClearDAchannel DA
Syntax
PROCEDURE ClearDAchannel(Channel_no: Longint);
Parameter
Channel_no: Value between 1 and 4 which corresponds to the 8-bit DA channel number in
which the data is to be erased.
Result
DA:
The 'DA' data variable of the selected DA-channel is set to minimum (0) .
The selected DA-channel is set to minimum output voltage (0 Volt).
Description
The selected 8-bit Digital to Analogue Converter channel is set to minimum output voltage (0
Volt).
Example
BEGIN
ClearDAchannel(1);
// DA channel 1 is at Vmin
END;
ClearAllDA DA
Syntax
PROCEDURE ClearAllDA;
Result
All DA-channels are set to minimum output voltage (0 Volt) .
Description
All DA-channels of the 8-bit Digital to Analogue Converters are set to minimum output voltage (0
Volt) .
Example
BEGIN
ClearAllDA;
// All DA channels 1...4 are at Vmin
END;