beepnl / beep-react-native-app

React native app for Android and iOS
1 stars 0 forks source link

Implement optional features based on firmware version #6

Closed maartenvandillen closed 2 years ago

maartenvandillen commented 2 years ago
  supportsFeature(feature: FEATURE) {
    switch (feature) {
      case "tilt":
        return this.version.compare("1.4.0") >= 0

      case "clock":
        return this.version.compare("1.5.0") >= 0

      case "logDownload":
        return this.version.compare("1.5.9") >= 0
    }
  }