Software Version
data class SoftwareVersion(val major: Int, val minor: Int = 0, val lts: Int? = null, val commitID: String? = null) : Comparable<SoftwareVersion>
Software version of the device
Functions
Link copied to clipboard
Link copied to clipboard
For sensors with a major version less than 6, the version numbers are formatted differently compared to sensors with a major version of 6 or higher. This method ensures that the version is represented in the appropriate format depending on the major version.