You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(6) |
Feb
(2) |
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(3) |
Sep
(9) |
Oct
(2) |
Nov
(3) |
Dec
|
2002 |
Jan
|
Feb
(4) |
Mar
(5) |
Apr
(1) |
May
(12) |
Jun
(3) |
Jul
(7) |
Aug
(10) |
Sep
(5) |
Oct
(6) |
Nov
(2) |
Dec
|
2003 |
Jan
(3) |
Feb
(11) |
Mar
(9) |
Apr
(6) |
May
(2) |
Jun
(1) |
Jul
(2) |
Aug
(36) |
Sep
(19) |
Oct
(54) |
Nov
(14) |
Dec
(23) |
2004 |
Jan
(30) |
Feb
(49) |
Mar
(35) |
Apr
(9) |
May
(18) |
Jun
(3) |
Jul
(8) |
Aug
(1) |
Sep
(15) |
Oct
(6) |
Nov
(5) |
Dec
(21) |
2005 |
Jan
(32) |
Feb
(14) |
Mar
(2) |
Apr
(13) |
May
(7) |
Jun
(31) |
Jul
(14) |
Aug
(27) |
Sep
(9) |
Oct
(19) |
Nov
(9) |
Dec
(13) |
2006 |
Jan
(35) |
Feb
(8) |
Mar
(27) |
Apr
(16) |
May
(4) |
Jun
(5) |
Jul
(20) |
Aug
(53) |
Sep
(58) |
Oct
(19) |
Nov
(21) |
Dec
(11) |
2007 |
Jan
(42) |
Feb
(20) |
Mar
(5) |
Apr
(14) |
May
(18) |
Jun
(11) |
Jul
(22) |
Aug
(17) |
Sep
(2) |
Oct
(8) |
Nov
|
Dec
(2) |
2008 |
Jan
(25) |
Feb
(1) |
Mar
(4) |
Apr
(5) |
May
(5) |
Jun
|
Jul
(4) |
Aug
|
Sep
(1) |
Oct
(6) |
Nov
|
Dec
|
2009 |
Jan
(2) |
Feb
(4) |
Mar
|
Apr
|
May
(10) |
Jun
|
Jul
(7) |
Aug
(6) |
Sep
|
Oct
(1) |
Nov
(2) |
Dec
|
2010 |
Jan
(17) |
Feb
(2) |
Mar
(2) |
Apr
(6) |
May
(4) |
Jun
(2) |
Jul
(1) |
Aug
(5) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
(5) |
Jun
|
Jul
(11) |
Aug
(2) |
Sep
(2) |
Oct
(5) |
Nov
(5) |
Dec
(18) |
2012 |
Jan
(5) |
Feb
(7) |
Mar
(1) |
Apr
(2) |
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
(2) |
Dec
|
2013 |
Jan
|
Feb
(1) |
Mar
|
Apr
(5) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(4) |
Oct
(1) |
Nov
|
Dec
|
2015 |
Jan
|
Feb
(4) |
Mar
|
Apr
(12) |
May
|
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(3) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Michael R. <mi...@re...> - 2009-01-04 14:37:34
|
Well, this is probably years ago, but... but... but... lcd4linux now supports alphanumeric operators, and there are string operators like 'eq', 'ne', 'gt', .... it was easy... (as it#s always easy as soon a you think twice about it) yvecai schrieb: > I would go for the tilde! > > Michael Reinelt a écrit : >>> In my example, >>> visible xmms(Status)=='Playing'?0:1 >>> desn't work: the conditional test 'a'=='b'?0:1 desn't seem to work if >>> 'a' and 'b' are strings. >> >> You are right: the operators '==' and '<>' are working on numbers only >> (same as it is in Perl) >> >> Adding 'perlish' string tests 'eq' and 'ne' isn't that easy, for the >> evaluator does not support alphanumeric operator tokens. >> >> Hmmm.... >> >> any ideas anyone? Is there a senseful operator token for string compare? >> >> probably the tilde? a ~ b (equal) or a !~ b (not equal) ??? >> >> >> bye, Michael >> >> > > > -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Michael R. <mi...@re...> - 2008-10-06 04:16:39
|
Hi there, > Ok,"widget 'READFLAG': class 'Timer' not applicable" happens when I > place the 'Timer' widget in a layout like in the following lcd4linux.conf. > And I did this to try to understand why my variable 'flag' is not > assigned by this widget. Ok, here's your problem: > Layout Default { > Row1 { > Col1 'READFLAG' > Col2 'TEST' > } > } You are not allowed to use 'special' widgets (like timers) in a Row/Column fashion. That's what the message 'Class not applicable' means. This config works for me: Layout Default { Row1 { #Col1 'READFLAG' Col2 'TEST' } Timer1 'READFLAG' } HTH, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: yvecai <yv...@gm...> - 2008-10-05 10:10:27
|
Ok,"widget 'READFLAG': class 'Timer' not applicable" happens when I place the 'Timer' widget in a layout like in the following lcd4linux.conf. And I did this to try to understand why my variable 'flag' is not assigned by this widget. My wish here would be to write '4' on the screen. Here is my lcd4linux.conf : _________________________________________ _________________________________________ *Display X11 { Driver 'X11' Size '100x32' Font '5x8' Pixel '3+1' Gap '1x1' Border 1 Foreground '000000ff' Background 'ffffff00' Basecolor 'ffffff' Buttons 0 Brightness 200 } Widget READFLAG { class 'Timer' expression flag = 4 active 1 update 200 } Widget TEST { class 'Text' expression flag width 5 align 'L' update 500 } Layout Default { Row1 { Col1 'READFLAG' Col2 'TEST' } } Variables { } Display 'X11' Layout 'Default' *_________________________________________ _________________________________________ And lcd4linux output: _________________________________________ _________________________________________ yves@MaisonuxII:~$ sudo lcd4linux -Fvv Version 0.10.2-SVN-796 starting [FIFO] read 'Plugin:FIFO.fifopath', value is '/tmp/lcd4linux.fifo' [KVV] Using station 89 [KVV] Using default port 80 [KVV] Using default refresh interval of 60 seconds [KVV] Default abbreviation setting: off plugin_mpd.c: [MPD] v0.82, check lcd4linux configuration file... [MPD] WARNING: Plugin is not enabled! (set 'enabled 1' to enable this plugin) lcd4linux.c: initializing driver X11 X11: $Rev: 840 $ drv_X11.c: X11: set backlight to 78%, original backlight color: 0xffffffff, dimmed: 0xc8c8c8ff _________________________________________ Michael Reinelt a écrit : > Hi there, > > > yvecai wrote: > > >> I have a problem in trying to assign a variable in a Timer widget: >> Here is part of Lcd4linux -Fvv output : >> > ... >> > initializing layout 'Default' >> > widget 'READFLAG': class 'Timer' not applicable" >> > ... >> >> Version 0.10.2-SVN-796 >> > > Could you please provide your lcd4linux.conf as a whole? > > I suppose you're using the same widget name twice; using two different > classes. > > > bye, Michael > > |
From: Michael R. <mi...@re...> - 2008-10-05 04:40:56
|
Hi there, yvecai wrote: > I have a problem in trying to assign a variable in a Timer widget: > Here is part of Lcd4linux -Fvv output : > > ... > > initializing layout 'Default' > > widget 'READFLAG': class 'Timer' not applicable" > > ... > > Version 0.10.2-SVN-796 Could you please provide your lcd4linux.conf as a whole? I suppose you're using the same widget name twice; using two different classes. bye, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Michael R. <mi...@re...> - 2008-10-04 05:35:06
|
> Is there a way to display a specific character from the lcd controler > character table ? > For exemple the asiatic character looking like a dancing man (hexq: #3C) > of a Everbouquet screen. Yes there is. Just use the \0xy notation (xy = octal value) HTH, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: yvecai <yv...@gm...> - 2008-10-03 20:46:07
|
Is there a way to display a specific character from the lcd controler character table ? For exemple the asiatic character looking like a dancing man (hexq: #3C) of a Everbouquet screen. Yves |
From: yvecai <yv...@gm...> - 2008-10-03 20:39:27
|
Hello, I have a problem in trying to assign a variable in a Timer widget: Here is part of Lcd4linux -Fvv output : > ... > initializing layout 'Default' > widget 'READFLAG': class 'Timer' not applicable" > ... Version 0.10.2-SVN-796 |
From: Yves <y.c...@fr...> - 2008-09-29 18:32:14
|
Hello, I have a problem in trying to assign a variable in a Timer widget: Here is part of Lcd4linux -Fvv output : > ... > initializing layout 'Default' > widget 'READFLAG': class 'Timer' not applicable" > ... Version 0.10.2-SVN-796 |
From: Michael R. <mi...@re...> - 2008-07-15 10:31:10
|
Hi Eric, > I have a new LCD display from MatrixOrbital (LKL202-25-USB-WB). They > recently updated this LCD to include a European display set instead of > a Japanese one. This means that instead of sending code 0xFF to the > display for a solid block, a custom character is needed. If you do > send 0xFF, you get an inverted P instead. I cannot change this on the > hardware and was wondering how I might do this in the source code... > Since the bar widget expects to send a character (255) I can't figure > out how to change it to a custom character that will display a full > block instead of a "P". Well, you're suffering from the "Portishead syndrome" :-) just add "asc255bug 1" to the config file, and you'll be fine! > Also, I've looked at "virtual rows". Will this be implemented soon? > lcdproc does not work for me on this display, but lcd4linux does and > this is the one feature I am missing. I'm afraid there won't be a short-term solution to this. HTH, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Michael R. <mi...@re...> - 2008-07-15 10:02:20
|
Hi Marcel, sorry for the late answer. > My display is exactly two pixels wider than the 21 chars that fit into one > line - so a left-to-right-bar with "width 21" ends 2 pixels before the > display's edge which is not that bad but annoying because I know it. Is there > a way to measure a bar's width in pixels instead of chars? No, I'm afraid this is not possible. sorry, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Michael R. <mi...@re...> - 2008-07-15 10:01:15
|
Hi Marcel, > But I've got one question so far: how may I make lcd4linux/my display display > non-ascii chars? It's really ugly having two whitespaces wherever some german > umlauts or french/spanish chars with accents should appear... There are two possible solutions to your problem: - the iconv plugin (documented in the wiki) - the \octal notation if you want to add some fixed ASCII codes to the display (eg the degree symbol) HTH, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Michael R. <mi...@re...> - 2008-07-15 09:57:26
|
Hi Marcel, > I'm trying to hack some plugin for lcd4linux. I followed the instructions on > the wiki page, but bootstrap complains about a missing "./config.rpath". My > checkout is up to date - what may I do about this? Thanks for the info. I got the same problem. A simple "touch config.rpath" solves the problem for me. But I found a (hopefully) generic config.rpath (seems to be related to gettext) and added it to the repository. So it should be fixed in SVN. Thanks, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Marcel <ta...@gm...> - 2008-05-24 20:48:23
|
Hello, I'm trying to hack some plugin for lcd4linux. I followed the instructions on the wiki page, but bootstrap complains about a missing "./config.rpath". My checkout is up to date - what may I do about this? -Marcel |
From: Marcel <ta...@gm...> - 2008-05-23 18:25:25
|
Hello, I just found out that my usb display works using the kernel driver (and not libusb) and now have a shiny new lcd4linux config - thanks to Michael and whoever contributed to the wiki! But I've got one question so far: how may I make lcd4linux/my display display non-ascii chars? It's really ugly having two whitespaces wherever some german umlauts or french/spanish chars with accents should appear... -Marcel |
From: Marcel <ta...@go...> - 2008-05-22 15:49:29
|
Hello, My display is exactly two pixels wider than the 21 chars that fit into one line - so a left-to-right-bar with "width 21" ends 2 pixels before the display's edge which is not that bad but annoying because I know it. Is there a way to measure a bar's width in pixels instead of chars? -Marcel |
From: Michael R. <mi...@re...> - 2008-05-12 03:42:17
|
Hi STefan, >> A HD44780 display has only 8 user-defineable characters, and it is not >> possible to map every combination of (double-)bars to this 8 chars. >> lcd4linux tries to be very clever in finding a way to display your bars >> with the available chars, but if the situation gets too complex it may >> fail. This is what this message is about. >> >> Hint #1: don't mix horizontal and vertical bars. >> Hint #2: dont mix E(east) and W(west) bars > However, to understand the Problem, here's the initial situation: > > In my lcd4linux.conf I had set "Icons 8", ooops... > defined all the sample icons > and bar-widgets from the sampe-config but used only two Icons ("Rain" > and "Blob") and a split horizontal bar (BusyBar). > > Now, what exactly causes the problem? If I get you right, this must be > (a) - that I had set "icons 8" and used a bar on top Yea, that's right. th "Icons 8" statement tells lcd4linux to reserve all 8 user-defineable chars for Icons, leaving exactly none to the bar processor. > Or could it be alternativle also > (b) - that I had defined icons that were not needed no, that's no problem. > (c) - that I had defined many bar-widgets I were not using > because the bare existence of these definitions in the config file uses > the resources, even if they are not displayed in the screen-definition? No again. lcd4linux creates widgets only if it finds them in a "Layout" Section > By the way: Is there a possibility to get my display to show the "°" > symbol as such, when it's part of a displayed text (I read > temperatures from a file, so that I want "xx.x °C"). Of course it's possible, as long as a) your display supports the degree char, and b) you can find out which ascii code it uses. If it's a strange ascii value, you can always use the \octal notation. bye, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Stefan U. H. <st...@he...> - 2008-05-11 18:26:31
|
Hi Michael, thanks for your prompt help. - However, for some reason your answer got plonked as spam and today I found it just by chance while browsing the online-archives ... > > What is here the problem? > > I suppose you're using a lot of different bars, maybe double bars. > > A HD44780 display has only 8 user-defineable characters, and it is not > possible to map every combination of (double-)bars to this 8 chars. > lcd4linux tries to be very clever in finding a way to display your bars > with the available chars, but if the situation gets too complex it may > fail. This is what this message is about. > > Hint #1: don't mix horizontal and vertical bars. > Hint #2: dont mix E(east) and W(west) bars > > If this does not help, please post your full lcd4linux.conf What I did: I threw everyting not neccessarily needed out of my lcd4linux.conf. Now I don't have any errors. - That's good. However, to understand the Problem, here's the initial situation: In my lcd4linux.conf I had set "Icons 8", defined all the sample icons and bar-widgets from the sampe-config but used only two Icons ("Rain" and "Blob") and a split horizontal bar (BusyBar). Now, what exactly causes the problem? If I get you right, this must be (a) - that I had set "icons 8" and used a bar on top Or could it be alternativle also (b) - that I had defined icons that were not needed (c) - that I had defined many bar-widgets I were not using because the bare existence of these definitions in the config file uses the resources, even if they are not displayed in the screen-definition? By the way: Is there a possibility to get my display to show the "°" symbol as such, when it's part of a displayed text (I read temperatures from a file, so that I want "xx.x °C"). Thanks a lot Stefan. -- Stefan U. Hegner <st...@he...> * * * D-32584 Löhne --- good ole Germany internet: http://www.hegner-web.de * * * GPG-Key | D9DB 51BD 2DA6 9B3A 41CB F-Print | 0287 05A1 8D11 38BA CE91 |
From: Michael R. <mi...@re...> - 2008-04-26 18:51:56
|
Hi Stefan, > What is here the problem? I suppose you're using a lot of different bars, maybe double bars. A HD44780 display has only 8 user-defineable characters, and it is not possible to map every combination of (double-)bars to this 8 chars. lcd4linux tries to be very clever in finding a way to display your bars with the available chars, but if the situation gets too complex it may fail. This is what this message is about. Hint #1: don't mix horizontal and vertical bars. Hint #2: dont mix E(east) and W(west) bars If this does not help, please post your full lcd4linux.conf > Or alternatively: Is there a simple way to > prevent lcd4linux from logging to syslog? No, I'm afraid there is none. Maybe you can tweak your syslogd to not write these messages to /var/log/syslog or whatever. > My config is as follows (I played a bit with the "fuzz"-value in order > to solve this, but so far with no result: the fuzz values influences timings on the parallel port, and has nothing to do with your problem. Hope this helps Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Stefan U. H. <st...@he...> - 2008-04-26 10:56:40
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi there, I'm running lcd4linux on debian etch (0.10.0+cvs20060825-1) with a HD44780 based 20x4 display. The actual display does, what it is supposed to (means: the bars and widgets work as wanted), but I get (despite correct operation) tons of error-messages logged in my syslog: Apr 26 12:33:43 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:43 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:43 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:43 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:43 zomba LCD4Linux[6791]: Segment[2].val1=1 val2=0 Apr 26 12:33:43 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:43 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:43 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:43 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:43 zomba LCD4Linux[6791]: Segment[2].val1=1 val2=0 Apr 26 12:33:44 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:44 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:44 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:44 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:44 zomba LCD4Linux[6791]: Segment[2].val1=2 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:45 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[2].val1=2 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:45 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[2].val1=1 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:45 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[2].val1=1 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: unable to compact bar characters Apr 26 12:33:45 zomba LCD4Linux[6791]: nSegment=2 fSegment=1 CHARS=8 ICONS=8 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[0].val1=0 val2=0 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[1].val1=5 val2=1 Apr 26 12:33:45 zomba LCD4Linux[6791]: Segment[2].val1=3 val2=0 What is here the problem? - Or alternatively: Is there a simple way to prevent lcd4linux from logging to syslog? My config is as follows (I played a bit with the "fuzz"-value in order to solve this, but so far with no result: # generic HD44780 display (LCD4Linux wiring) Display HD44780-generic { Driver 'HD44780' Model 'generic' Port '/dev/parport1' Size '20x4' asc255bug 1 Icons 8 GPOs 8 Wire { RW 'GND' RS 'AUTOFD' ENABLE 'STROBE' ENABLE2 'GND' GPO 'INIT' POWER 'GND' } Timing { fuzz '85' } } When starting lcd4linux I tried using multiple "-q" options (see below) ... but also without any effect so far: #! /bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DAEMON=/usr/sbin/lcd4linux DAEMON_OPTS="-qqq" NAME=lcd4linux DESC=lcd4linux test -x $DAEMON || exit 0 test -f /etc/lcd4linux.conf || exit 0 set -e case "$1" in start) echo -n "Starting $DESC: " chmod 600 /etc/lcd4linux.conf start-stop-daemon --start --quiet --pidfile /var/run/$NAME.pid \ --exec $DAEMON -- $DAEMON_OPTS echo "$NAME." ;; [...] Any idea how to prevent this log-overflow would be highly aprreciated. Thanks a lot in advance! Stefan. - -- Stefan U. Hegner <st...@he...> * * * D-32584 Löhne --- good ole Germany internet: http://www.hegner-web.de * * * GPG-Key | D9DB 51BD 2DA6 9B3A 41CB F-Print | 0287 05A1 8D11 38BA CE91 -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.0 (GNU/Linux) iD8DBQFIEwpFBaGNETi6zpERAoeWAJ9+OtVRQsORm0kRm4Bs7cSo9NP8DQCaAjLx cxLAfW257uzzqaD0ojK6hVA= =5wxM -----END PGP SIGNATURE----- |
From: Eric <er...@gm...> - 2008-04-08 05:15:06
|
I have a new LCD display from MatrixOrbital (LKL202-25-USB-WB). They recently updated this LCD to include a European display set instead of a Japanese one. This means that instead of sending code 0xFF to the display for a solid block, a custom character is needed. If you do send 0xFF, you get an inverted P instead. I cannot change this on the hardware and was wondering how I might do this in the source code... Since the bar widget expects to send a character (255) I can't figure out how to change it to a custom character that will display a full block instead of a "P". Also, I've looked at "virtual rows". Will this be implemented soon? lcdproc does not work for me on this display, but lcd4linux does and this is the one feature I am missing. Thank you all for your support. -Eric |
From: Marcel <ta...@gm...> - 2008-04-02 13:56:25
|
Just realized I sent my reply directly to Michael instead of the list... ----------- Hello, testserdisp doesn't really help either, something must be wrong there. O.o root@d-wwow:/home/marcel# testserdisp -n "CTINCLUD" -p "07c0:1501" -d 2 Error: Unable to open 07c0:1501, additional info: This is serdisplib 1.97.7 and lcd4linux 0.10.2-SVN-796 just to have it said... > Am Montag 31 März 2008 05:23:10 schrieben Sie: > > Hi Marcel, > > > > > serdisplib: open(07c0:1501) failed: > > > > > > I've also tried the X11 driver for testing which was successful, so > > > there must be something wrong with serdisplib I think. But where may I > > > start? > > > > There is a little test program that comes with serdisplib (called > > 'testserdisplib' or something...) Try if this one works. > > > > > > HTH, Michael |
From: Toby M. <to...@di...> - 2008-04-02 08:32:36
|
Hi, Just wondering if someone can help me, is it possible to get the Dallas 1 wire temperature readings using the matrix orbital driver? (I have a MX222) I see looking on the wiki there is a closed ticket related to this : http://ssl.bulix.org/projects/lcd4linux/ticket/80 but it does not really specify how to do it? thanks Toby ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. |
From: Michael R. <mi...@re...> - 2008-03-31 03:23:25
|
Hi Marcel, > serdisplib: open(07c0:1501) failed: > I've also tried the X11 driver for testing which was successful, so there must > be something wrong with serdisplib I think. But where may I start? There is a little test program that comes with serdisplib (called 'testserdisplib' or something...) Try if this one works. HTH, Michael -- Michael Reinelt <mi...@re...> http://home.pages.at/reinelt GPG-Key 0xDF13BA50 ICQ #288386781 |
From: Marcel <ta...@gm...> - 2008-03-30 12:47:38
|
Hello! I can't get lcd4linux open my usb display. Just compiled the svn source with serdisplib support (which is also handmade with libusb-support...), but lcd4linux just produces this: marcel@d-wwow:~/Desktop/lcd4linux$ sudo ./lcd4linux -Fvv -f /home/marcel/lcd4tanu.conf Version 0.10.2-SVN-796 starting [KVV] Using station 89 [KVV] Using default port 80 [KVV] Using default refresh interval of 60 seconds [KVV] Default abbreviation setting: off lcd4linux.c: initializing driver serdisplib serdisplib: $Rev: 840 $ serdisplib: header version 1.97 serdisplib: library version 1.97 serdisplib: open(07c0:1501) failed: The usb device id is definitely correct: marcel@d-wwow:~/Desktop/lcd4linux$ sudo lsusb Bus 004 Device 003: ID 07c0:1501 Code Mercenaries Hard- und Software GmbH IO-Warrior 24 <snip> I've also tried the X11 driver for testing which was successful, so there must be something wrong with serdisplib I think. But where may I start? -Marcel |
From: Toby M. <to...@di...> - 2008-03-27 17:21:41
|
Hi, Looking through the archive, This seems to have been asked a few times in the past. I have a smallish display (2x20) so i would like to have one one screen of information shown for a few seconds, then another screen displayed, etc. I undestand from the manual this could be done with virtual rows in v 0.9 but not in the most recent version, as explained in the manual : --------------------- At the moment this window is fixed in the top left corner, but it will be moveable in the future (to achieve something similar to the virtual rows in LCD4Linux-0.9). --------------------- Is is possible to do this in the most recent version or do you advise me to use the older version 0.9 for now? thanks Toby ---------------------------------------------------------------- This message was sent using IMP, the Internet Messaging Program. |