News:

Rule #1 - Be Patient - Rule #2 - Don't ask when, if you don't contribute - Rule #3 - You have coding skills - LinuxMCE's small brother is available: http://www.agocontrol.com

Main Menu

LCD working on Silverstone case

Started by chamo, November 24, 2007, 01:39:44 PM

Previous topic - Next topic

nite_man

To start lcd_redirect during the boot time you can add it into LCDd start script. This is a quick and dirty solution but it should work.
Michael Stepanov,
My setup: [url="http://wiki.linuxmce.org/index.php/User:Nite_man#New_setup"]http://wiki.linuxmce.org/index.php/User:Nite_man#New_setup[/url]
Russian LinuxMCE community: [url="http://linuxmce.ru"]http://linuxmce.ru[/url]

gazlang

#16
Ok I have solved this - adding the lcd_redirect command to any init or rc.local script etc doesn't work because it is loaded before the LMCE orbiter.

Heres what I did to get it running -

Make a deamon

sudo nano /usr/sbin/lcd

add


#!/bin/bash
#check if the OrbiterGL is already running!
LMCE=`pidof OrbiterGL`
       if [ ! -z $LMCE ] ; then
                while true ; do
                        #load lcdproc
                        /usr/local/sbin/LCDd -c /home/linuxmce/lcdproc/LCDd.conf
                        #load lcd_redirect
                        /home/linuxmce/lcd/lcd_redirect 39
                        sleep 5
                       done
        else
                sleep 5
                /usr/sbin/lcd
        fi



change the lcdproc and lcd_redirect paths to suit you

Then make it executable

chmod 755 /usr/sbin/lcd

And make an init script

sudo nano /etc/init.d/lcd

add>

/usr/bin/lcd

then

update-rc.d lcd defaults


The lcd_redirect will then start with the orbiter. You can have the mythtv lcd client set up to display tv info (when you quit mythtv lcd_redirect will start back up)

Perfec!
AMD Athlon 5800+ X2
Asus M2N-SLI-Deluxe
2x Corsair XMS6400 DDR2 512mb
Samsung 400GB SATA + 500GB SATA
nVidia GeForce 7300GT
Hauppauge Nova-T 500
Hauppauge PVR-500
Thermaltake low-noise 450w PSU
Thermaltake Bach Case w/ imon vfd
Fiire Remote
UIRT

gazlang

By the way, since the lcd_redirect driver is not mine I was a bit adverse to entering the howto on the wiki.

Any thoughts on this?
AMD Athlon 5800+ X2
Asus M2N-SLI-Deluxe
2x Corsair XMS6400 DDR2 512mb
Samsung 400GB SATA + 500GB SATA
nVidia GeForce 7300GT
Hauppauge Nova-T 500
Hauppauge PVR-500
Thermaltake low-noise 450w PSU
Thermaltake Bach Case w/ imon vfd
Fiire Remote
UIRT

Itsik

where can I find this driver ?
clicking the link gives a "page not found"

thnx
Itsik

nite_man

Michael Stepanov,
My setup: [url="http://wiki.linuxmce.org/index.php/User:Nite_man#New_setup"]http://wiki.linuxmce.org/index.php/User:Nite_man#New_setup[/url]
Russian LinuxMCE community: [url="http://linuxmce.ru"]http://linuxmce.ru[/url]

bulek

Hi,

I also have silverstone case, but didn't yet played with VFD. But have an idea - since we're all learning GSD from our great tutors...

it would be convenient to have a driver that would by default display time and date and have simple api to change default message and display dynamic message for X secs - and then we could register GSD event listener that would determine messages to be displayed on VFD or any other live display around....

Great topic ....

Is present driver anywhere near that ?

HTH,

regards,

Bulek.
Thanks in advance,

regards,

Bulek.

totallymaxed

Quote from: bulek on April 22, 2008, 02:15:17 PM
Hi,

I also have silverstone case, but didn't yet played with VFD. But have an idea - since we're all learning GSD from our great tutors...

it would be convenient to have a driver that would by default display time and date and have simple api to change default message and display dynamic message for X secs - and then we could register GSD event listener that would determine messages to be displayed on VFD or any other live display around....

Great topic ....

Is present driver anywhere near that ?

HTH,

regards,

Bulek.


I agree that would be a very nice capability to have ;-)

Andrew
Andy Herron,
CHT Ltd

For Dianemo/LinuxMCE consulting advice;
@herron on Twitter, totallymaxed+inquiries@gmail.com via email or PM me here.

Get Dianemo-Rpi2 ARM Licenses [url="http://forum.linuxmce.org/index.php?topic=14026.0"]http://forum.linuxmce.org/index.php?topic=14026.0[/url]

Get RaspSqueeze-CEC or Raspbmc-CEC for Dianemo/LinuxMCE: [url="http://wp.me/P4KgIc-5P"]http://wp.me/P4KgIc-5P[/url]

Facebook: [url="https://www.facebook.com/pages/Dianemo-Home-Automation/226019387454465"]https://www.facebook.com/pages/Dianemo-Home-Automation/226019387454465[/url]

[url="http://www.dianemo.co.uk"]http://www.dianemo.co.uk[/url]


nite_man

Michael Stepanov,
My setup: [url="http://wiki.linuxmce.org/index.php/User:Nite_man#New_setup"]http://wiki.linuxmce.org/index.php/User:Nite_man#New_setup[/url]
Russian LinuxMCE community: [url="http://linuxmce.ru"]http://linuxmce.ru[/url]

Itsik

Thw link you gave is to the lirc.conf for the imon pad. I was looking for the driver to display lmce data on the vfd

gazlang

The link I posted still works for me!
If the link stil doesn't work for you, pm me your email and I will send you the driver folder as soon as I can
AMD Athlon 5800+ X2
Asus M2N-SLI-Deluxe
2x Corsair XMS6400 DDR2 512mb
Samsung 400GB SATA + 500GB SATA
nVidia GeForce 7300GT
Hauppauge Nova-T 500
Hauppauge PVR-500
Thermaltake low-noise 450w PSU
Thermaltake Bach Case w/ imon vfd
Fiire Remote
UIRT