Add some different xPL implementations done by Telldus
This commit is contained in:
parent
deebf2045e
commit
d4b46c71ec
21 changed files with 2285 additions and 0 deletions
22
xpl/pyxpl/xpldevice.py
Normal file
22
xpl/pyxpl/xpldevice.py
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue