Add some different xPL implementations done by Telldus

This commit is contained in:
Micke Prag 2012-05-29 14:18:28 +02:00
parent deebf2045e
commit d4b46c71ec
21 changed files with 2285 additions and 0 deletions

22
xpl/pyxpl/xpldevice.py Normal file
View file

@ -0,0 +1,22 @@
###########################################################################
# Copyright (C) 2009 by Magnus Ahlberg
# <magnus.ahlberg@svart-katt.se>
#
# Copyright: See COPYING file that comes with this distribution
#
###########################################################################
class XPLDevice:
"""A class to manage and xPL device"""
vendor = ""
device = ""
instance = ""
def __init__(devicename):
pass
def __init__(vendor, device):
pass
def __init__(vendor, device, instance):
pass