├── .gitignore ├── LICENSE ├── LIFXClient.podspec ├── README.md └── Sources ├── Common ├── Coding │ ├── LIFXCodable.swift │ ├── LIFXDecodable.swift │ ├── LIFXDecoder.swift │ ├── LIFXEncodable.swift │ └── LIFXEncoder.swift ├── Extensions │ ├── BinaryFloatingPoint+Extensions.swift │ ├── FixedWidthInteger+Extensions.swift │ └── NWConnection+Extensions.swift ├── LIFXClient.swift ├── LIFXDevice.swift ├── LIFXLight.swift └── Networking │ ├── LIFXConnection.swift │ ├── LIFXMessage.swift │ └── LIFXPacket.swift ├── iOS └── LIFXColor.swift └── macOS └── LIFXColor.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/LICENSE -------------------------------------------------------------------------------- /LIFXClient.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/LIFXClient.podspec -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Common/Coding/LIFXCodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Coding/LIFXCodable.swift -------------------------------------------------------------------------------- /Sources/Common/Coding/LIFXDecodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Coding/LIFXDecodable.swift -------------------------------------------------------------------------------- /Sources/Common/Coding/LIFXDecoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Coding/LIFXDecoder.swift -------------------------------------------------------------------------------- /Sources/Common/Coding/LIFXEncodable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Coding/LIFXEncodable.swift -------------------------------------------------------------------------------- /Sources/Common/Coding/LIFXEncoder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Coding/LIFXEncoder.swift -------------------------------------------------------------------------------- /Sources/Common/Extensions/BinaryFloatingPoint+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Extensions/BinaryFloatingPoint+Extensions.swift -------------------------------------------------------------------------------- /Sources/Common/Extensions/FixedWidthInteger+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Extensions/FixedWidthInteger+Extensions.swift -------------------------------------------------------------------------------- /Sources/Common/Extensions/NWConnection+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Extensions/NWConnection+Extensions.swift -------------------------------------------------------------------------------- /Sources/Common/LIFXClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/LIFXClient.swift -------------------------------------------------------------------------------- /Sources/Common/LIFXDevice.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/LIFXDevice.swift -------------------------------------------------------------------------------- /Sources/Common/LIFXLight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/LIFXLight.swift -------------------------------------------------------------------------------- /Sources/Common/Networking/LIFXConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Networking/LIFXConnection.swift -------------------------------------------------------------------------------- /Sources/Common/Networking/LIFXMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Networking/LIFXMessage.swift -------------------------------------------------------------------------------- /Sources/Common/Networking/LIFXPacket.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/Common/Networking/LIFXPacket.swift -------------------------------------------------------------------------------- /Sources/iOS/LIFXColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/iOS/LIFXColor.swift -------------------------------------------------------------------------------- /Sources/macOS/LIFXColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dclelland/LIFXClient/HEAD/Sources/macOS/LIFXColor.swift --------------------------------------------------------------------------------