setdcdivepo2alarm

Occurrence

optional, multiple

Attributes

Description

<setdcdivepo2alarm> allows for setting an oxygen partial pressure at which the dive computer shall give an alarm signal. As many <setdcdivepo2alarm> elements as needed can appear one after the other to support different alarm signals for different oxygen partial pressures.

Parent Elements

<setdcdata>

Child Elements

<dcalarm>, <maximumpo2>

See Also

<setdcdata>, <setdcdivetimealarm>, <setdcendndtalarm>

Examples

(see also <setdcdata>)

<!-- reaching an oxygen partial pressure of 1.4 the dive computer shall give an acoustic signal -->
<setdcdivepo2alarm>
    <maximumpo2>1.4</maximumpo2>
    <dcalarm>
        <!-- alarm to be given for 10 seconds -->
        <period>10.0</period>
        <alarmtype>1</alarmtype>
    </dcalarm>
</setdcdivepo2alarm>
<!-- reaching an oxygen partial pressure of 1.6 the dive computer shall give another acoustic signal -->
<setdcdivepo2alarm>
    <maximumpo2>1.6</maximumpo2>
    <dcalarm>
        <!-- this alarm is to be acknowledged -->
        <acknowledge/>
        <alarmtype>2</alarmtype>
    </dcalarm>
</setdcdivepo2alarm>