導航:首頁 > 編程語言 > 電表編程允許

電表編程允許

發布時間:2023-07-20 13:06:32

❶ 如何編程讀取智能電表的數據

方 法:
/// <summary>
/// 只能通過CreateInstance方法來創建類的實例。單例模式
/// </summary>
public static ElectricityMeter CreateInstance()
{
return _instance;
}
/// <summary>
/// 打開設備
/// </summary>
/// <param name="portName">串口號</param>
/// <param name="frm">調用這個類的窗體。</param>
public void Open( string portName, Form frm )
{
try
{
// 初始化窗體對象
_frm = frm;
_frm.FormClosing += new FormClosingEventHandler( _frm_FormClosing );
//初始化SerialPort對象
_serialPort.PortName = portName;
_serialPort.BaudRate = 2400; // 請將設備的波特率設置為此。
_serialPort.DataBits = 8;
_serialPort.StopBits = StopBits.One;
_serialPort.Parity = Parity.Even;
_serialPort.Open();
}
catch( Exception e )
{
MessageBox.Show( e.Message );
}
}
/// <summary>
/// 關閉設備。
/// </summary>
public void Close()
{
if( _serialPort.IsOpen == true )
{
_serialPort.Close();
_serialPort.Dispose();
}
}
/// <summary>
/// 獲取耗電量
/// </summary>
public Decimal GetPowerConsumption()
{
if( _serialPort.IsOpen == true )
{
// 十六進制的命令字元串
string strCmd = "68 AA AA AA AA AA AA 68 11 04 33 33 33 33 AD 16";
// 轉換為十六進制的位元組數組
string[] strs = strCmd.Split( new char[] { ' ' } ); // 空格分組
byte[] cmdBytes = new byte[ strs.Length ];
// 轉換為十進制的位元組數組
for( int i = 0; i < cmdBytes.Length; i++ ) {
cmdBytes[ i ] = Convert.ToByte( strs[ i ], 16 ); // 16進制轉換為10進制
}
_serialPort.Write( cmdBytes, 0, cmdBytes.Length );
System.Threading.Thread.Sleep( 500 ); // 500ms內應當有響應
byte[] resultBytes = new byte[ 21 ]; // 容量為21的位元組數組
_serialPort.Read( resultBytes, 0, resultBytes.Length );
string n1 = Convert.ToString( resultBytes[ 18 ] - 51, 16 ); // 將十進制轉成16進制的字元串
string n2 = Convert.ToString( resultBytes[ 17 ] - 51, 16 ); // 將十進制轉成16進制的字元串
string n3 = Convert.ToString( resultBytes[ 16 ] - 51, 16 ); // 將十進制轉成16進制的字元串
string n4 = Convert.ToString( resultBytes[ 15 ] - 51, 16 ); // 將十進制轉成16進制的字元串
string resultString = n1 + n2 + n3 + "." + n4;
return Decimal.Parse( resultString );
}
else
{
throw new Exception( "串口沒有打開" );
}
}
/// <summary>
/// 在窗體關閉的時候關閉串口連接。
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
void _frm_FormClosing( object sender, FormClosingEventArgs e )
{
this.Close();
}
}

閱讀全文

與電表編程允許相關的資料

熱點內容
閱讀前端框架源碼 瀏覽:12
我的世界命令方塊傳送指令 瀏覽:545
不能用start命令打開xp 瀏覽:925
text命令 瀏覽:30
為什麼appstore經常下架游戲 瀏覽:91
java管理信息系統 瀏覽:16
ipadpro登錄雲伺服器 瀏覽:62
沒加密招標文件 瀏覽:261
命令來自剃頭的用英語怎麼說 瀏覽:767
什麼app不花一分錢買東西 瀏覽:375
布林四線指標源碼 瀏覽:970
單片機的控制板 瀏覽:220
襄陽軟體編程 瀏覽:843
sshpass命令 瀏覽:108
logo伺服器怎麼下載 瀏覽:510
如何ftp連接伺服器 瀏覽:676
creo自動編程 瀏覽:163
雲伺服器在電腦怎麼開 瀏覽:434
ipad相冊如何在文件夾中建文件夾 瀏覽:623
和家親這個app有什麼用 瀏覽:577