| 12345678910111213141516 |
- //
- // SetRemoteControlEnabledMessageBody.swift
- // MinimedKit
- //
- // Copyright © 2018 Pete Schwamb. All rights reserved.
- //
- import Foundation
- public class SetRemoteControlEnabledMessageBody: CarelinkLongMessageBody {
- public convenience init(enabled: Bool) {
- self.init(rxData: Data([1, enabled ? 1 : 0]))!
- }
- }
|