Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GetVersionNumber() As Integer

Returns the three most significant version number numbers of the BrightSign firmware running on the device in comparable numeric form: major*65536 + minor*256 + build

Warning
titleImportant

The return value for the GetVersionNumber() method does not include any additional version numbers after the first three: For example, firmware version 4.0.13.4 will be returned as 262157 (as if it were "4.0.13"). For this reason, we recommend using the GetVersion() or FirmwareIsAtLeast() methods to determine the current firmware version.

FirmwareIsAtLeast(version As String) As Boolean

Returns True if the BrightSign firmware version on the device is less than or equal to the version number represented by the passed string (e.g. "4.0.13").

GetBootVersion() As String

...

GetBootVersionNumber() As Integer

Returns the three most significant version number numbers of the BrightSign boot firmware, also known as "safe mode," in comparable numeric form: major*65536 + minor*256 + build

FirmwareIsAtLeast(version As String) As Boolean

Returns True if the BrightSign firmware version on the device is less than or equal to the version number represented by the passed string (e.g. "6.0.1").

Warning
titleImportant

The return value for the GetBootVersionNumber() method does not include any additional version numbers after the first three: For example, firmware version 1.0.4.1 will be returned as 65540 (as if it were "1.0.4"). For this reason, we recommend using the GetBootVersion() or BootFirmwareIsAtLeast() methods to determine the current boot firmware version.

BootFirmwareIsAtLeast(version As String) As Boolean

...