Re: LCDproc 0.5.5-pre1 - imonlcd progress bar broken
Yura Scheglyuk <[email protected]>
| Newsgroups | gmane.comp.sysutils.lcdproc |
|---|---|
| Message-ID | <[email protected]> |
Hi! On 02.10.2011 2:37, Markus Dolze wrote: > A new release candidate of the next stable version of LCDproc is now available for download on Sourceforge: lcdproc-0-5-5-pre1. It contains a few bug fixes and some updated drivers. > > Please give it a try and report back and problems. Progress bars of imonlcd is broken in lcdproc 0.5.5. Simple python script progress-bars.py attached. On the first run this script shows one and half progress bars. On the second run this scrips shows nothing. This script worked correctly on lcdproc 0.5.4. -- Best regards, Yura. _______________________________________________ LCDproc mailing list [email protected] http://lists.omnipotent.net/mailman/listinfo/lcdproc
progress-bars.py
(text/plain, 370 B)
#!/usr/bin/python import socket import time sc = socket.socket( socket.AF_INET, socket.SOCK_STREAM ) sc.connect(( '', 13666 )) sc.send( 'hello\n' ) print sc.recv( 1024 ) sc.send( 'info\n' ) print sc.recv( 1024 ) sc.send( 'output 0x40000000\n' ) time.sleep( 1 ) sc.send( 'output 0x10820010\n' ) time.sleep( 1 ) sc.send( 'output 0x0\n' ) time.sleep( 1 ) sc.close()