A Kotlin/JVM client for accessing the AVM Fritzbox AHA-HTTP Interface.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.wolpl:FritzAhaClient:Tag'
}
fun main(){
val session = FritzSession("username", "password")
val switches = session.getSwitchList()
println("Available switches: $switches")
}