[r21]: / ecu_at135_v1c_aladdin / StandardPLC / Plc Logic / Application / 001.Global_Box / Inputs / Fct_digital_inputs / svnobj  Maximize  Restore  History

Download this file

35 lines (33 with data), 3.3 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
TYPE Fct_digital_inputs :
	
STRUCT
	xReset_inputs_error:			BOOL;
	(* Input - Connecteur de charge *)
	xSw_charge_connector:			BOOL;
	xSw_charge_connector_error:		BOOL;
	uiChannel_charge_connector:		UINT	:= 101;
	(* Input - Arr
t urgence canal 1 *)
	xSw_Estop_chan1:				BOOL;
	xSw_Estop_chan1_error:			BOOL;
	uiChannel_Estop_chan1:			UINT	:= 200;
	(* Input - Arr
t urgence canal 2 *)
	xSw_Estop_chan2:				BOOL;
	xSw_Estop_chan2_error:			BOOL;
	uiChannel_Estop_chan2:			UINT	:= 201;
	(* Input - Selecteur D
marrage v
hicule *)
	xSw_Ignition:					BOOL;
	xSw_Ignition_error:				BOOL;
	uiChannel_Ignition:				UINT	:= 202;
	(* Input - Selection mode autonome *)
	xSw_set_autonom:				BOOL;
	xSw_set_autonom_error:			BOOL;
	uiChannel_set_autonom:			UINT	:= 300;
	(* Input - Selection mode manuel *)
	xSw_set_manuel:					BOOL;
	xSw_set_manuel_error:			BOOL;
	uiChannel_set_manuel:			UINT	:= 301;
END_STRUCT*
END_TYPE