초기 커밋.

This commit is contained in:
2025-12-17 12:40:51 +09:00
parent e8d195c03e
commit 368acb1aa8
184 changed files with 95393 additions and 0 deletions

View File

@@ -0,0 +1,79 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LFP_Manager.DataStructure
{
internal class CsSnmpConstData
{
public static readonly string[] SnmpOidInfo =
{
".1.3.6.1.2.1.15.1.0", // 0 Voltage - 10mV
".1.3.6.1.2.1.15.2.0", // 1 Current - 10mA
".1.3.6.1.2.1.15.3.0", // 2 #01 Cell Voltage - mV
".1.3.6.1.2.1.15.4.0", // 3 #02 Cell Voltage - mV
".1.3.6.1.2.1.15.5.0", // 4 #03 Cell Voltage - mV
".1.3.6.1.2.1.15.6.0", // 5 #04 Cell Voltage - mV
".1.3.6.1.2.1.15.7.0", // 6 #05 Cell Voltage - mV
".1.3.6.1.2.1.15.8.0", // 7 #06 Cell Voltage - mV
".1.3.6.1.2.1.15.9.0", // 8 #07 Cell Voltage - mV
".1.3.6.1.2.1.15.10.0", // 9 #08 Cell Voltage - mV
".1.3.6.1.2.1.15.11.0", // 10 #09 Cell Voltage - mV
".1.3.6.1.2.1.15.12.0", // 11 #10 Cell Voltage - mV
".1.3.6.1.2.1.15.13.0", // 12 #11 Cell Voltage - mV
".1.3.6.1.2.1.15.14.0", // 13 #12 Cell Voltage - mV
".1.3.6.1.2.1.15.15.0", // 14 #13 Cell Voltage - mV
".1.3.6.1.2.1.15.16.0", // 15 #14 Cell Voltage - mV
".1.3.6.1.2.1.15.17.0", // 16 #15 Cell Voltage - mV
".1.3.6.1.2.1.15.18.0", // 17 #16 Cell Voltage - mV
".1.3.6.1.2.1.15.19.0", // 18 Temp of PCB - C
".1.3.6.1.2.1.15.20.0", // 19 Temp of Ambient - C
".1.3.6.1.2.1.15.21.0", // 20 Temp Max. - C
".1.3.6.1.2.1.15.22.0", // 21 Remaining Capacity - 0.1AH
".1.3.6.1.2.1.15.24.0", // 23 SOH - 0.00%
".1.3.6.1.2.1.15.25.0", // 24 SOC - 0.00%
".1.3.6.1.2.1.15.26.0", // 25 Status
".1.3.6.1.2.1.15.27.0", // 26 Warning
".1.3.6.1.2.1.15.28.0", // 27 Protection
".1.3.6.1.2.1.15.29.0", // 28 FailAndStatus
".1.3.6.1.2.1.15.30.0", // 29 Cycle Count
".1.3.6.1.2.1.15.31.0", // 30 #01 Temp - C
".1.3.6.1.2.1.15.32.0", // 31 #02 Temp - C
".1.3.6.1.2.1.15.33.0", // 32 #03 Temp - C
".1.3.6.1.2.1.15.34.0", // 33 #04 Temp - C
".1.3.6.1.2.1.15.37.0", // 34 Cell Number
".1.3.6.1.2.1.15.38.0", // 35 Designed Capacity - 0.1AH
".1.3.6.1.2.1.15.39.0", // 36 Average Temp - C
".1.3.6.1.2.1.15.40.0", // 37 Max Charge Current - A
".1.3.6.1.2.1.15.41.0", // 38 Temp Number
".1.3.6.1.2.1.15.42.0", // 39 DateTime - Year
".1.3.6.1.2.1.15.43.0", // 40 DateTime - Month
".1.3.6.1.2.1.15.44.0", // 41 DateTime - Date
".1.3.6.1.2.1.15.45.0", // 42 DateTime - Hour
".1.3.6.1.2.1.15.46.0", // 43 DateTime - Minute
".1.3.6.1.2.1.15.47.0", // 44 DateTime - Second
".1.3.6.1.2.1.15.48.0", // 45 Flaot Voltage - 0.00V
".1.3.6.1.2.1.15.49.0", // 46 Boost Voltage - 0.00V
".1.3.6.1.2.1.15.50.0", // 47 Min. Charge Temp - C
".1.3.6.1.2.1.15.51.0", // 48 Max. Charge Temp - C
".1.3.6.1.2.1.15.60.0", // 49 Model - String
".1.3.6.1.2.1.15.61.0", // 50 BMS Firmware - String
".1.3.6.1.2.1.15.62.0", // 51 Pack Serial Number - String
".1.3.6.1.2.1.15.63.0", // 52 Vendor Name - String
".1.3.6.1.2.1.15.64.0", // 53 Product Code - String
".1.3.6.1.2.1.15.65.0", // 54 MajorMinorRev - String
".1.3.6.1.2.1.15.66.0", // 55 HwProductRev - String
".1.3.6.1.2.1.15.67.0", // 56 Manufacture Date - String
};
}
}