Blame view

HDFwear/OTA/RemoteStatus.m 479 Bytes
211744a9   jason   feat:ota import
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
  //
  //  RemoteStatus.m
  //  ActsBluetoothOTA
  //
  //  Created by inidhu on 2019/9/12.
  //  Copyright © 2019 Actions. All rights reserved.
  //
  
  #import "RemoteStatus.h"
  
  @implementation RemoteStatus
  
  - (id)init
  {
      if (self = [super init]) {
          
          self.batteryThreshold = 30;
          self.versionName = nil;
          self.boardName = nil;
          self.hardwareRev = nil;
          self.versionCode = 0;
          self.featureSupport = 0x00;
      }
      
      return self;
  }
  
  @end