
Unofficial SDK interacts with Scaleway IoT Hub API, enabling operations on hubs, devices, routes, networks, and experimental twins using the Ktor client library.
This is an unofficial SDK for the Scaleway IoT Hub API.
It is written in Kotlin Multiplatform and uses the Ktor client library to interact with the API.
Dependencies are hosted on Maven Central.
implementation("com.playmoweb.iothub:iothub-sdk:0.1.0")import com.playmoweb.iothub.IotHubConfig
import com.playmoweb.iothub.IotHubSdk
val sdk: IotHubSdk = IotHubSdk(
iotHubConfig = IotHubConfig(
accessKey = "your_access_key",
secretKey = "your_secret_key"
),
)
val devices = sdk.client.listDevices()This is an unofficial SDK for the Scaleway IoT Hub API.
It is written in Kotlin Multiplatform and uses the Ktor client library to interact with the API.
Dependencies are hosted on Maven Central.
implementation("com.playmoweb.iothub:iothub-sdk:0.1.0")import com.playmoweb.iothub.IotHubConfig
import com.playmoweb.iothub.IotHubSdk
val sdk: IotHubSdk = IotHubSdk(
iotHubConfig = IotHubConfig(
accessKey = "your_access_key",
secretKey = "your_secret_key"
),
)
val devices = sdk.client.listDevices()