| 12345678910111213141516171819202122232425262728293031323334 |
- //
- // SelectBasalProfilePumpEvent.swift
- // RileyLink
- //
- // Created by Nate Racklyeft on 6/15/16.
- // Copyright © 2016 Pete Schwamb. All rights reserved.
- //
- import Foundation
- public struct SelectBasalProfilePumpEvent: TimestampedPumpEvent {
- public let length: Int
- public let rawData: Data
- public let timestamp: DateComponents
- public init?(availableData: Data, pumpModel: PumpModel) {
- length = 7
- guard length <= availableData.count else {
- return nil
- }
- rawData = availableData.subdata(in: 0..<length)
- timestamp = DateComponents(pumpEventData: availableData, offset: 2)
- }
- public var dictionaryRepresentation: [String: Any] {
- return [
- "_type": "SelectBasalProfile",
- ]
- }
- }
|