rssi.vb
来自「通过串口发送短信的模块,采用vb.net编写」· VB 代码 · 共 46 行
VB
46 行
''' <summary>
''' RSSI class
''' </summary>
''' <remarks></remarks>
Public Class Rssi
Private iCurrent As Integer
Private iMin As Integer
Private iMax As Integer
Public Property Current() As Integer
Get
Return Me.iCurrent
End Get
Set(ByVal value As Integer)
Me.iCurrent = value
End Set
End Property
Public Property Minimum() As Integer
Get
Return Me.iMin
End Get
Set(ByVal value As Integer)
Me.iMin = value
End Set
End Property
Public Property Maximum() As Integer
Get
Return Me.iMax
End Get
Set(ByVal value As Integer)
Me.iMax = value
End Set
End Property
End Class
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?