Skip to content

Python library for configuring Wiznet wiz110sr devices

License

Notifications You must be signed in to change notification settings

jnmbk/python-libwiz110sr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

WIZNET WIZ110SR Device Configuration Library

You can configure your Wiznet wiz110sr device using this Python library.

Example Usage

Following example would change ip address setting on first device in your network

import time
import wiz110sr

finder = wiz110sr.DeviceFinder()
finder.search()
time.sleep(1)
device_list = finder.get_device_list()
if device_list:
    print "Found devices:", device_list
    my_device = device_list[0]
    my_device.set_ip_address("10.0.0.2")
    my_device.save_config()
else:
    print "No wiz110sr device was found on current network"

About

Python library for configuring Wiznet wiz110sr devices

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages