The myUplink API is a RESTful API to access public data from the NIBE S-Series heat pumps. This Swift library provides a simple client using this RESTful API.
Get more information about the public RESTful MyUplink API from myUplink
MyUplinkSwift is packaged as a Swift framework. Currently this is the easiest way to add it to your app:
MyUplink
framework.MyUplink
whenever you want to use OAuthSwift.import PackageDescription
let package = Package(
name: "MyApp",
dependencies: [
.package(name: "MyUplink",
url: "https://https://github.com/tkausch/MyUplinkSwift.git",
.upToNextMajor(from: "0.1.0"))
]
)