The 'AlarmSetSoundFlag' function turns on the alarm sound or turns off the alarm sound.
void AlarmSetSoundFlag(int flag);
Parameters
int flag : 1 = ON. 0 = OFF
Return Value
None
Example 1
@AlarmSetSoundFlag(1);
Description : The above statement turn on the alarm sound.
Example 2
@AlarmSetSoundFlag(0);
Description : The above statement turn off the alarm sound.
Relate items)