Skip to content
This repository has been archived by the owner on Mar 9, 2021. It is now read-only.

mirthas/FritzTR064

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

FritzTR064

Java-library to communicate with the AVM FritzBox by using the TR-064 protocol.

Dependencies

This library depends on:

Quickstart

Get all the posibel Actions:

FritzConnection fc = new FritzConnection("192.168.1.1","<username>","<password>");
fc.init();
fc.printInfo();

The next Example shows how you can get the number of connected Wlan Devices:

FritzConnection fc = new FritzConnection("192.168.1.1","<username>","<password>");
fc.init();
Service service = fc.getService("WLANConfiguration:1");
Action action = service.getAction("GetTotalAssociations");
Response response = action.execute();
int deviceCount = response.getValueAsInteger("NewTotalAssociations");

For more examples see: The Example Folder

Resorces

About

Java API for the Fritzbox TR-064 protokoll

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages