SelectBasalProfileMessageBody.swift 334 B

123456789101112131415
  1. //
  2. // SelectBasalProfileMessageBody.swift
  3. // MinimedKit
  4. //
  5. // Copyright © 2017 Pete Schwamb. All rights reserved.
  6. //
  7. import Foundation
  8. public class SelectBasalProfileMessageBody: CarelinkLongMessageBody {
  9. public convenience init(newProfile: BasalProfile) {
  10. self.init(rxData: Data([1, newProfile.rawValue]))!
  11. }
  12. }