diff options
author | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2010-04-20 19:43:34 +0000 |
---|---|---|
committer | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2010-04-20 19:43:34 +0000 |
commit | fd2cda186ad308833753ada16dbc7aa18277e183 (patch) | |
tree | 9d124a05ae33dda9298b07db6633091b5be94580 /bin | |
parent | 7654c1cfe6a14b07a9d8f7cf19a9b9a5e3f2d8ae (diff) | |
download | ebus-alt-fd2cda186ad308833753ada16dbc7aa18277e183.tar.gz ebus-alt-fd2cda186ad308833753ada16dbc7aa18277e183.zip |
foo
git-svn-id: http://10.2.2.13/svn/common/ebus@1662 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ebus_dump | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/ebus_dump b/bin/ebus_dump index 3a86ee8..41efa33 100644 --- a/bin/ebus_dump +++ b/bin/ebus_dump @@ -4,6 +4,10 @@ import asyncore from ebus import EbusReader class MyEbusReader(EbusReader): + def __init__(self,*args,**kwargs): + EbusReader.__init__(self,*args,**kwargs) + self.debug=True + def handle_ebus(self,ebus_packet): if ebus_packet.values() != dict(): print ebus_packet |