|
@@ -21,6 +21,29 @@ namespace FirmwareHeaderBuilder.Model.ModelNaming
|
|
|
|
|
|
public static InputConfiguration E = new InputConfiguration("E", "1 Phase 2 wires + PE, 100 - 120Vac, 50Hz/60Hz");
|
|
|
|
|
|
+ public static InputConfiguration N0 = new InputConfiguration("0", "1 phase 2 wires + PE, CEE 7/7 plug (compatible with Type E and Type F), 220 - 240Vac, 50Hz/60Hz. (For European)");
|
|
|
+
|
|
|
+ public static InputConfiguration N1 = new InputConfiguration("1", "1 phase 2 wires + PE, BS 1363 plug (Type G), 220 - 240Vac, 50Hz/60Hz. (For UK)");
|
|
|
+
|
|
|
+ public static InputConfiguration N2 = new InputConfiguration("2", "1 phase 2 wires + PE, AS/NZS 3112 (Type I), 220 - 240Vac, 50Hz/60Hz. (For Australia, New Zealand)");
|
|
|
+
|
|
|
+ public static InputConfiguration N3 = new InputConfiguration("3", "1 phase 2 wires + PE, GB 2099.1‐2008 and GB 1002‐2008 (Type I), 220 - 240Vac, 50Hz/60Hz. (For China)");
|
|
|
+
|
|
|
+ public static InputConfiguration N4 = new InputConfiguration("4", "1 phase 2 wires + PE, IS1293 plug (Type M), 220 - 240Vac, 50Hz/60Hz. (For Indian and South African)");
|
|
|
+
|
|
|
+ public static InputConfiguration N5 = new InputConfiguration("5", "2 phase 2 wires + PE, NEMA 5-15 plug (Type B), 120 Vac, 50Hz/60Hz.(For UL, TW, Japan)");
|
|
|
+
|
|
|
+ public static InputConfiguration N6 = new InputConfiguration("6", "2 phase 2 wires + PE, NEMA 6-20 plug, 200 - 240Vac, 50Hz/60Hz. (For UL, TW)");
|
|
|
+
|
|
|
+ public static InputConfiguration N7 = new InputConfiguration("7", "2 phase 2 wires + PE, NEMA 14-30 plug, 120 - 240Vac, 50Hz/60Hz. (For UL)");
|
|
|
+
|
|
|
+ public static InputConfiguration N8 = new InputConfiguration("8", "2 phase 2 wires + PE, NEMA 14-50 plug, 120 - 240Vac, 50Hz/60Hz. (For UL)");
|
|
|
+
|
|
|
+ public static InputConfiguration N9 = new InputConfiguration("9", "2 phase 2 wires + PE, NEMA 6-50 plug, 200 - 240Vac, 50Hz/60Hz. (For UL, TW)");
|
|
|
+
|
|
|
+ public static InputConfiguration A = new InputConfiguration("A", "2 phase 2 wires + PE, NEMA 14-60 plug, 200 - 240Vac, 50Hz/60Hz. (For UL)");
|
|
|
+
|
|
|
+
|
|
|
/// <summary>取得代碼。</summary>
|
|
|
public string Code { get; set; }
|
|
|
/// <summary>取得名稱。</summary>
|
|
@@ -46,6 +69,17 @@ namespace FirmwareHeaderBuilder.Model.ModelNaming
|
|
|
yield return W;
|
|
|
yield return T;
|
|
|
yield return E;
|
|
|
+ yield return N0;
|
|
|
+ yield return N1;
|
|
|
+ yield return N2;
|
|
|
+ yield return N3;
|
|
|
+ yield return N4;
|
|
|
+ yield return N5;
|
|
|
+ yield return N6;
|
|
|
+ yield return N7;
|
|
|
+ yield return N8;
|
|
|
+ yield return N9;
|
|
|
+ yield return A;
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -60,6 +94,17 @@ namespace FirmwareHeaderBuilder.Model.ModelNaming
|
|
|
yield return W.Name;
|
|
|
yield return T.Name;
|
|
|
yield return E.Name;
|
|
|
+ yield return N0.Name;
|
|
|
+ yield return N1.Name;
|
|
|
+ yield return N2.Name;
|
|
|
+ yield return N3.Name;
|
|
|
+ yield return N4.Name;
|
|
|
+ yield return N5.Name;
|
|
|
+ yield return N6.Name;
|
|
|
+ yield return N7.Name;
|
|
|
+ yield return N8.Name;
|
|
|
+ yield return N9.Name;
|
|
|
+ yield return A.Name;
|
|
|
}
|
|
|
}
|
|
|
|