diff options
author | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2010-06-09 19:41:46 +0000 |
---|---|---|
committer | yvesf <yvesf@d0e8fea9-7529-0410-93fb-d39fd5b9c1dd> | 2010-06-09 19:41:46 +0000 |
commit | 6c580608f942d2f4b931faa6fe81171fd9e8a878 (patch) | |
tree | 4176230fe3b61f61bbe2aca8ce4068fda8810dd4 /bin/ebus_dump.py | |
parent | 3fc788b05bba8813b5b5b274ac1676050104d2f0 (diff) | |
download | ebus-alt-6c580608f942d2f4b931faa6fe81171fd9e8a878.tar.gz ebus-alt-6c580608f942d2f4b931faa6fe81171fd9e8a878.zip |
bla
git-svn-id: http://10.2.2.13/svn/common/ebus@1679 d0e8fea9-7529-0410-93fb-d39fd5b9c1dd
Diffstat (limited to 'bin/ebus_dump.py')
-rw-r--r-- | bin/ebus_dump.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/ebus_dump.py b/bin/ebus_dump.py new file mode 100644 index 0000000..bfae56e --- /dev/null +++ b/bin/ebus_dump.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python +# -*- coding:utf8 -*- +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 + +MyEbusReader() +asyncore.loop() |