Private Sub Command1_Click()
MSComm1.Output = "@"
MSComm1.Output = Chr(Val(Text1.Text) \ 256) ' Byte cao
MSComm1.Output = Chr(Val(Text1.Text) Mod 256) ' Byte thap
End Sub
Private Sub Form_Load()
MSComm1.PortOpen = True
End Sub
Ai giải thích giùm em tại sao phải chia cho 256 không ạ.
Cái này là em dùng để hiển thị số nhập từ ô text ra 4 led 7 đoạn kêt nối với pic18f4520 ạ
MSComm1.Output = "@"
MSComm1.Output = Chr(Val(Text1.Text) \ 256) ' Byte cao
MSComm1.Output = Chr(Val(Text1.Text) Mod 256) ' Byte thap
End Sub
Private Sub Form_Load()
MSComm1.PortOpen = True
End Sub
Ai giải thích giùm em tại sao phải chia cho 256 không ạ.
Cái này là em dùng để hiển thị số nhập từ ô text ra 4 led 7 đoạn kêt nối với pic18f4520 ạ
Comment