| 123456789101112131415161718192021222324252627282930313233 |
- //
- // SensorWeakSignalGlucoseEvent.swift
- // RileyLink
- //
- // Created by Timothy Mecklem on 10/16/16.
- // Copyright © 2016 Pete Schwamb. All rights reserved.
- //
- import Foundation
- public struct SensorWeakSignalGlucoseEvent: RelativeTimestampedGlucoseEvent {
- public let length: Int
- public let rawData: Data
- public let timestamp: DateComponents
-
- public init?(availableData: Data, relativeTimestamp: DateComponents) {
- length = 1
-
- guard length <= availableData.count else {
- return nil
- }
-
- rawData = availableData.subdata(in: 0..<length)
- timestamp = relativeTimestamp
- }
-
- public var dictionaryRepresentation: [String: Any] {
- return [
- "name": "SensorWeakSignal",
- ]
- }
- }
|