You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// See http://ieeexplore.ieee.org/stamp/stamp.jsp?arnumber=6872107 for
73
+
// additional information/context on EV charging connector types.
74
+
enumEVConnectorType {
75
+
// Unspecified connector.
76
+
EV_CONNECTOR_TYPE_UNSPECIFIED=0;
77
+
78
+
// Other connector types.
79
+
EV_CONNECTOR_TYPE_OTHER=1;
80
+
81
+
// J1772 type 1 connector.
82
+
EV_CONNECTOR_TYPE_J1772=2;
83
+
84
+
// IEC 62196 type 2 connector. Often referred to as MENNEKES.
85
+
EV_CONNECTOR_TYPE_TYPE_2=3;
86
+
87
+
// CHAdeMO type connector.
88
+
EV_CONNECTOR_TYPE_CHADEMO=4;
89
+
90
+
// Combined Charging System (AC and DC). Based on SAE.
91
+
// Type-1 J-1772 connector
92
+
EV_CONNECTOR_TYPE_CCS_COMBO_1=5;
93
+
94
+
// Combined Charging System (AC and DC). Based on Type-2
95
+
// Mennekes connector
96
+
EV_CONNECTOR_TYPE_CCS_COMBO_2=6;
97
+
98
+
// The generic TESLA connector. This is NACS in the North America but can be
99
+
// non-NACS in other parts of the world (e.g. CCS Combo 2 (CCS2) or GB/T).
100
+
// This value is less representative of an actual connector type, and more
101
+
// represents the ability to charge a Tesla brand vehicle at a Tesla owned
102
+
// charging station.
103
+
EV_CONNECTOR_TYPE_TESLA=7;
104
+
105
+
// GB/T type corresponds to the GB/T standard in China. This type covers all
0 commit comments