[r18]: / ecu_at135_v1B_aladdin / StandardPLC / Plc Logic / Application / 005.Gestion_Signalisation_Véhicule / Gestion_Interface_Signalisation / Gestion_Klaxon / svnobj  Maximize  Restore  History

Download this file

16 lines (14 with data), 1.6 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
METHOD Gestion_Klaxon
VAR_INPUT
	
	Mode_autonom:	BOOL;
	Mode_manuel: 	BOOL; 
IF GEMMA.Ignition_seq_done = TRUE THEN
	IF Mode_autonom = TRUE THEN
		IF Horn = TRUE THEN
			OUT0008_Q.ValueDigital := TRUE;	
		END_IF
	END_IF
END_IF	
IF Horn = FALSE THEN
	OUT0008_Q.ValueDigital := FALSE;
END_IF