📄 rssi.vb
字号:
''' <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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -