240x64 LCD blau oder weiss fertig verloetet -> 45 euro

  • hmm also irgendwie hab ich das gefühl bei mir stimmt was nicht. es steht folgendes im syslog:

    Code
    Jan  6 21:16:43 jim vdr[1212]: starting plugin: graphlcd
    Jan  6 21:16:44 jim vdr[1235]: graphlcd plugin: Display update thread started (pid=1235)
    Jan  6 21:16:44 jim vdr[1235]: graphlcd plugin: benchmark started.
    Jan  6 21:16:44 jim vdr[1235]: graphlcd plugin: benchmark stopped. Time for Command: 1143ns
    Jan  6 21:16:44 jim vdr[1212]: graphlcd plugin: logo /var/lib/vdr/plugins/graphlcd/logos/RTL TELEVISION_m.glcd loaded.
    Jan  6 21:16:44 jim vdr[1235]: graphlcd plugin: SED1330 initialized.


    eigentlich müsste doch was auf dem glcd zu sehen sein, oder?


    gruß,
    hulk1st

    Origebae X11E inkl. VFD, Celeron 600mhz passiv, Siemens D1215 Board, 512 MB Ram, DVB-S 1.3, AV-Board, 350W Be quiet! NT, NEC DVD DL Brenner, Samsung 120GB + Samsung 250GB, 1GB CF Root Drive, linvdr 0.7 mit den aktuellsten Patches aus dem Board

  • es läuft! jipieeeeeeeee!
    es läuft, es läuft es läuft!
    *freu*


    jetzt kann ich beruhigt schlafen gehen ;)


    ps:
    wastl
    wofür sind denn eigentlich nun diese zwei patch zeilen? bei mir gehts auch ohne wunderbar.
    ich hab mich mal bei ner ct' vdr version dran versucht die neu zu kompilieren aber ich wusste nich wohin mit der sed1330.o und linvdr hat ja gar keine compiler tools. oder hab ich die einschränkung mit dem ungepatchten treiber nur noch nich bemerkt?


    gruß,
    hulk1st

    Origebae X11E inkl. VFD, Celeron 600mhz passiv, Siemens D1215 Board, 512 MB Ram, DVB-S 1.3, AV-Board, 350W Be quiet! NT, NEC DVD DL Brenner, Samsung 120GB + Samsung 250GB, 1GB CF Root Drive, linvdr 0.7 mit den aktuellsten Patches aus dem Board

    2 Mal editiert, zuletzt von hulk1st ()

  • hulk1st


    das ist ja das 'lustige' phaenomen beim sed1330/sed1335. bei einigen tritt es auf, bei anderen anscheinend nicht. als ich mein display das erste mal in betrieb genommen habe, fehlten die ersten 7 pixel, auch andere klagten ueber fehlende pixelspalten. dh der wert von HDOTSCR (sed133x kann den inhalt um 0-7 pixel nach links verschieben) scheint bei manchen chips zufaellig gesetzt zu werden.


    der patch macht nichts anderes, als diesen wert fix auf 0 zu initialisieren.


    daher: hilft's nix, schadet's nix ^^


    /wastl

  • Hallo rschierer !
    Habe alles ausprobiert was man sich nur vorstellen kann, immer mit dem gleichen Ergebnis, Minivdr startet nicht mehr!
    Nun nach dem letzten update habe ich nun auch die Version "graphlcd 0.1.2-pre4. Aber ich kriege es einfach nicht hin.



    Hier mal meine komplette runvdr:



    #!/bin/bash


    . /etc/vdr/sysconfig
    export PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin"
    export NAME="vdr"
    export DESC="Digital Videorecorder"
    export LANG="C"
    export HOME="/root"


    BINDIR="/usr/bin"
    CONFDIR="/etc/vdr"
    PLUGINDIR="/usr/lib/vdr/plugins"
    VDRTTY="10"
    VDRUSR="root"
    MODULES="
    videodev.o
    dvb-core.o dvb_shutdown_timeout=0
    alps_bsrv2.o
    alps_tdmb7.o
    alps_tdlb7.o
    grundig_29504-401.o
    grundig_29504-491.o
    mt312.o
    stv0299.o
    ves1820.o
    evdev.o
    tda1004x.o
    dvb-ttpci.o vidmode=$VIDMODE
    "
    # av7110_ir_debug=1


    for PLUGIN in $PLUGINLIST;
    do
    PLUGINS="$PLUGINS -P$PLUGIN"
    done




    loadmodule() {
    insmod /lib/modules/`uname -r`/misc/$*
    }


    reverse() {
    # Be sure that IFS is set correctly! Will use tab for separation.
    if [ "$#" -gt "1" ]; then
    first=$1
    shift
    echo "`reverse $@`"$'\t'"${first}"
    else
    echo -n $1
    fi
    }


    case "$1" in
    start)
    cp /video0/epg.data /ramdisk/epg.data
    if test -f /var/run/atd.pid; then
    echo " atd is running"
    else
    /etc/init.d/atd start
    fi
    /bin/bash -c '\
    /bin/echo $$ > /var/run/vdr.pid; \
    while /bin/true; do \
    /etc/init.d/runvdr up 2>&1 >/dev/null; \
    sleep 1; \
    /etc/init.d/runvdr down; \
    done >/dev/null 2>/dev/null' &
    ;;
    stop)


    if [ -e /var/run/vdr.pid ]; then
    PID=`cat /var/run/vdr.pid`
    if [ x"$PID" != "x" ]; then
    kill -9 $PID
    fi
    rm -f /var/run/vdr.pid
    fi
    /etc/init.d/runvdr down 2>&1 >/dev/null
    ;;
    up)
    OLDIFS=$IFS
    IFS=$'\t'$'\n'
    for module in $MODULES; do
    IFS=$OLDIFS
    loadmodule $module
    IFS=$'\t'$'\n'
    done
    IFS=$OLDIFS

    if [ $START_FBTV == "yes" ]; then
    fbtv -t 10 2>/dev/null >/dev/null &
    # doesnt work, why?
    #bash -c 'while true; do fbtv -t 12 2>/dev/null >/dev/null; wait; sleep 5; done' &
    else
    chvt $VDRTTY
    echo "Here reads VDR from the keyboard as remote control replacement." > /dev/tty$VDRTTY
    echo "For a login console switch to console 1 to 4 with [ALT][F1] to [ALT][F4]" > /dev/tty$VDRTTY
    echo "To get back here, please press [ALT][F10]" > /dev/tty$VDRTTY
    fi
    # LIRC oder Remote
    if [ $LIRC_REMOTE_OFF != "yes" ]; then
    if [ $USE_INTERNAL_IR != "yes" ]; then
    if [ x$LIRC = x"com1" ]; then
    echo "starting lircd on com1"
    lirc_on_com1
    fi
    if [ x$LIRC = x"com2" ]; then
    echo "starting lircd on com2"
    lirc_on_com2
    fi
    fi
    if [ $USE_INTERNAL_IR != "no" ]; then
    if [ x$INVERT_SIGNAL = x"yes" ]; then
    LOADKEYS_PARAM="-i"
    fi
    /usr/bin/av7110_loadkeys $LOADKEYS_PARAM /etc/vdr/loadkeys/default.rc5 > /proc/av7110_ir
    # add -Premote to $PLUGINS?
    PLUGINS="$PLUGINS -Premote"
    fi
    fi

    sleep 20 && nice -n 19 /usr/share/vdradmin/vdradmind.pl &

    killall -9 showpic


    # Link für DVD richtig setzen
    cd /dev
    rm dvd
    ln -s /dev/sr0 /dev/dvd
    cd /
    ################################################
    # Fehlende Ordner
    if test -f /video0/convert/foto/donotdelete;then
    echo "Ordner Foto bereits vorhanden"
    else
    mkdir /video0/convert/foto;
    touch /video0/convert/foto/donotdelete;
    fi


    if test -f /video0/received_data/donotdelete;then
    echo "Ordner EPG bereits vorhanden"
    else
    mkdir /video0/received_data;
    touch /video0/received_data/donotdelete;
    fi


    if test -d /media/mp3;then
    echo "Ordner MP3 bereits vorhanden"
    else
    mkdir /media/mp3;
    fi


    if test -d /media/7in1;then
    echo "Ordner 7in1 bereits vorhanden"
    else
    mkdir /media/7in1;
    fi
    ################################################
    # Cache für Video0
    if [ x$CACHE_NO = x"no" ]; then
    rm /video0/.update
    else
    touch /video0/.update
    fi
    ################################################



    # NOAD Autostart
    if [ x$NOAD = x"yes" ]; then
    su root -c "$BINDIR/vdr -L $PLUGINDIR $PLUGINLIST -r'noad --online=2 --jumplogo --OSD --statisticfile=/video0/noadstat' -P'graphlcd -c sed1330 -x 240 -y 64' -v /video0 -c $CONFDIR -w 1500 -t /dev/tty$VDRTTY -l 3 -E /ramdisk/epg.data -s /usr/bin/vdrshutdown"
    else
    su root -c "$BINDIR/vdr -L $PLUGINDIR $PLUGINS -P'graphlcd -c sed1330 -x 240 -y 64' -v /video0 -c $CONFDIR -w 1500 -t /dev/tty$VDRTTY -l 3 -E /ramdisk/epg.data -s /usr/bin/vdrshutdown"
    fi
    ;;
    down)
    /usr/share/vdradmin/vdradmind.pl -k
    PID=`ps auxw | grep "vdr -L" | grep -v grep | awk '{ print $2 }'`
    if [ x"$PID" != "x" ]; then
    kill $PID
    fi
    sleep 1


    if [ $START_FBTV == "yes" ]; then
    PID=`ps auxw | grep "fbtv" | grep -v grep | awk '{ print $2 }'`
    if [ x"$PID" != "x" ]; then
    kill $PID
    fi
    fi


    OLDIFS=$IFS
    IFS=$'\t'$'\n'
    MODULES="`reverse $MODULES`"
    sleep 5
    for module in $MODULES; do
    module=`echo $module | sed -e s/\\\.o.*//`
    rmmod $module
    done
    IFS=$OLDIFS



    ;;
    *)
    N=/etc/init.d/$NAME
    # echo "Usage: $N {start|stop|restart|reload|force-reload}" >&2
    echo "Usage: $N {start|stop|up|down}" >&2
    exit 1
    ;;
    esac


    exit 0




    vieleicht habe ich einen Fehler gemacht?



    MFG Satmen

    VDR1:
    Yavdr
    M3N78-VM-HDMI mit AMD4850e und 2 Technotrend 3200 DVB-S2
    TS35-Lirc

  • hast du denn auch die richtigen einstellungen im graphlcd menü gemacht? da kommt man irgendwie über das vdr menü und dann auf plugins hin.


    mfg,
    hulk1st

    Origebae X11E inkl. VFD, Celeron 600mhz passiv, Siemens D1215 Board, 512 MB Ram, DVB-S 1.3, AV-Board, 350W Be quiet! NT, NEC DVD DL Brenner, Samsung 120GB + Samsung 250GB, 1GB CF Root Drive, linvdr 0.7 mit den aktuellsten Patches aus dem Board

  • Was meinst du mit richtigen einstellungen?


    # graphlcd.conf.sample
    #
    # This file contains a sample configuration for the graphlcd driver
    # library.
    #
    # The format is ini-file-like. It is divided into sections that start
    # at markers that look like [section]. Comments are all line-based
    # comments, and are lines that start with '#'.
    #
    # The file starts with general settings, that are used by several
    # drivers, followed by the sections. Each section represents a single
    # display with a driver definition and specific settings which define
    # how the driver acts. Some of these parameters like device, port and
    # size are already parsed by the library but the drivers can also read
    # their own options from the config file. The library passes them to
    # the drivers.


    # WaitMethod
    # Select the method that is used for sleeping.
    # Possible values:
    # 0 - usleep
    # 1 - nanosleep
    # 2 - nanosleep (sched_rr) - This is recommended on kernel 2.4 systems
    # 3 - gettimeofday - This is recommended on kernel 2.6 systems
    # Defaukt value: 2
    WaitMethod=2


    # WaitPriority
    # Select the process priority that is used when sleeping.
    # Possible values: -20 <= x <= 19
    # Default value: 0
    WaitPriority=0


    # General driver settings
    # This section lists the display settings that are parsed and
    # recognized by the driver library.
    #
    # Driver
    # Sets the display's driver.
    # Currently available are: framebuffer, gu140x32f, gu256x64-372,
    # gu256x64C-3xx0, hd61830, image, ks0108,
    # sed1520, sed1330, simlcd, t6963c
    #
    # Device
    # Instead of using the direct output via port address (see Port), you
    # can use the parport device (/dev/parportX). The advantage over the
    # direct output via port address is that this works for non-root users
    # also. But it's a little bit slower. The modules ppdev.o, parport.o
    # and parport_pc.o must be loaded or compiled into the kernel.
    #
    # Port
    # Sets the port address of the parallel port. If this parameter is not
    # given, 0x378 is used. To use this direct output, the program that
    # uses the driver library has to be started with user 'root'.
    #
    # Width
    # Sets the horizontal size of the display. If this parameter is not
    # given, a default one specific to the driver is used.
    #
    # Height
    # Sets the vertical size of the display. If this parameter is not
    # given, a default one specific to the driver is used.
    #
    # UpsideDown
    # Rotates the display output by 180 degrees. This might be useful, if
    # the LCD is mounted upside-down.
    # Possible values: 'yes', 'no'
    # Default value: 'no'
    #
    # Invert
    # Inverts the display.
    # Possible values: 'yes', 'no'
    # Default value: 'no'
    #
    # Brightness
    # Sets the brightness of your display's backlight if supported by its
    # driver.
    # Supported by: gu140x32f, gu256x64-372, gu256x64-3900
    # Possible values: 0 <= x <= 100)
    # Default value: 100
    #
    # Contrast
    # Sets the contrast of your display if supported by its driver.
    # Supported by: serdisplib
    # Possible values: 0 <= x <= 10
    # Default value: 5
    #
    # Backlight
    # Switches the backlight of your display on and off if supported by
    # its driver.
    # Supported by: serdisplib
    # Possible values: 'yes', 'no'
    # Default value: 'yes'
    #
    # AdjustTiming
    # To get a timing that is as accurate as possible, the drivers measure
    # the time for port commands (see: benchmark in syslog). You might
    # decrease or increase the time to wait after port commands with this
    # parameter. Normally, there is no need to change this parameter.
    # (used by gu140x32f, gu256x64-372, gu256x64-3900, hd61830, ks0108,
    # sed1330, sed1520)
    # Possible values: -50 <= x <= 50
    # Default value: 0
    #
    # RefreshDisplay
    # Normally, most of the drivers do not update the whole display, but
    # only the areas that have changed since last update. So it might be,
    # that some faulty pixels would stay a longer time. To avoid this, the
    # plugin makes a complete refresh from time to time. This parameter
    # defines how often a complete refresh will be done.
    # e.g.: A value of 5 means, that the plugin will make a complete
    # refresh on every 5th update.
    # A value of 0 completely disables complete refreshs.
    # Possible values: 0 <= x <= 50
    # Default value: 5


    ########################################################################


    [framebuffer]
    # framebuffer driver
    # Output goes to a framebuffer device
    # Default size: 320 x 240
    Driver=framebuffer


    #Width=320
    #Height=240
    #UpsideDown=no
    #Invert=no


    # Zoom
    # Determines if pixels should be drawn double sized.
    # Possible values: 0, 1
    Zoom=1


    ########################################################################


    [gu140x32f]
    # gu140x32f driver
    # This is an 8-bit driver module for Noritake GU140x32-F7806 VFD
    # displays. The VFD is operating in it's 8 bit-mode connected to a
    # single PC parallel port.
    # Default size: 140 x 32
    Driver=gu140x32f


    Port=0x378
    #Device=/dev/parport0
    #Width=140
    #Height=32
    #UpsideDown=no
    #Invert=no
    #Brightness=100
    #AdjustTiming=0
    #RefreshDisplay=1


    # Wiring
    # Select the type of wiring your display is connected with.
    # Possible values: 'Standard', 'Windows'
    # Default value: 'Standard'
    Wiring=Standard


    ########################################################################


    [gu256x64-372]
    # gu256x64-372 driver
    # This is an 8-bit driver module for Noritake GU256x64-372 VFD
    # displays. The VFD is operating in it's 8 bit-mode connected to a
    # single PC parallel port.
    # Default size: 256 x 64
    Driver=gu256x64-372


    Port=0x378
    #Device=/dev/parport0
    #Width=256
    #Height=64
    #UpsideDown=no
    #Invert=no
    #Brightness=100
    #AdjustTiming=0
    #RefreshDisplay=1


    ########################################################################


    [gu256x64-3900]
    # gu256x64-3900 driver
    # This is a driver module for Noritake GU256X64x-3900 VFD displays. The
    # VFD is either operating in 8 bit-mode connected to a single PC
    # parallel port or in serial mode connected to a single PC serial port.
    # Default size: 256 x 64
    Driver=gu256x64-3900


    Port=0x378
    #Device=/dev/parport0
    #Width=256
    #Height=64
    #UpsideDown=no
    #Invert=no
    #Brightness=100
    #AdjustTiming=0
    #RefreshDisplay=1


    # Wiring
    # Select the type of wiring your display is connected with.
    # Possible values: 'Standard', 'Satyr'
    # Default value: 'Standard'
    Wiring=Standard


    # Interface
    # Select the interface your display is connnected to.
    # Possible values: 'Parallel', 'Serial'
    # Default value: 'Parallel'
    Interface=Parallel


    # DMA
    # Enables/disables the usage of the controller's DMA mode which
    # increases writing speed. This only works in parallel interface mode.
    # Possible values: 'yes', 'no'
    # Default value: 'yes'
    DMA=yes


    ########################################################################


    [hd61830]
    # hd61830 driver
    # This is a driver module for the Hitachi HD61830 LCD controller.
    # Default size: 240 x 128
    Driver=hd61830
    Port=0x378
    #Device=/dev/parport0
    #Width=240
    #Height=128
    #UpsideDown=no
    #Invert=no
    #AdjustTiming=0
    #RefreshDisplay=1


    ########################################################################


    [image]
    # image driver
    # This is a driver module for writing image sequences in PBM (Portable
    # Bit Map) format that show the plugin's output.
    # Default size: 240 x 128
    Driver=image
    #Width=240
    #Height=128
    #UpsideDown=no
    #Invert=no


    ########################################################################


    [ks0108]
    # ks0108 driver
    # This is a driver module for the Samsung KS0108 LCD controller.
    # Default size: 128 x 64
    Driver=ks0108
    Port=0x378
    #Device=/dev/parport0
    #Width=128
    #Height=64
    #UpsideDown=no
    #Invert=no
    #AdjustTiming=0
    #RefreshDisplay=1


    ########################################################################


    [sed1330]
    # sed1330 driver
    # This is a driver module for the Epson SED1330/1335 LCD controller.
    # Default size: 320 x 240
    Driver=sed1330
    Port=0x378
    #Device=/dev/parport0
    Width=240
    Height=64
    #UpsideDown=no
    Invert=yes
    #AdjustTiming=0
    #refreshDisplay=1


    # Wiring
    # Select the type of wiring your display is connected with.
    # Possible values: 'Original', 'PowerLCD', 'LCDProc', 'Tweakers',
    # 'YASEDW'
    # Default value: 'Original'
    Wiring=PowerLCD


    # OscillatorFrequency
    # Select the frequency the oscillator on your LCD board uses in kHz.
    # Possible values: 1000 <= x <= 15000)
    # Default value: 9600
    OscillatorFrequency=9600


    # Interface
    # Select the interface mode your display is connected with.
    # Possible values: '6800', '8080'
    # Default value: '6800'
    Interface=8080


    ########################################################################


    [sed1520]
    # sed1520 driver
    # This is a driver module for the Epson SED1520 LCD controller.
    # Default size: 120 x 32
    Driver=sed1520
    Port=0x378
    #Device=/dev/parport0
    #Width=120
    #Height=32
    #UpsideDown=no
    #Invert=no
    #AdjustTiming=0
    #RefreshDisplay=1


    ########################################################################


    [simlcd]
    # simlcd driver
    # This is the SimLCD driver module. Output goes to a file instead of
    # LCD. Use SimLCD tool to view this file.
    # Default size: 240 x 128
    Driver=simlcd
    #Width=240
    #Height=128
    #UpsideDown=no
    #Invert=no


    ########################################################################


    [t6963c]
    # t6963c driver
    # This is a driver module for the Toshiba T6963C LCD controller.
    # Default size: 240 x 128
    Driver=t6963c
    Port=0x378
    #Device=/dev/parport0
    #Width=240
    #Height=128
    #UpsideDown=no
    #Invert=no
    #RefreshDisplay=1


    # Wiring
    # Select the type of wiring your display is connected with.
    # Possible values: 'Standard', 'Windows'
    # Default value: 'Standard'
    Wiring=Standard


    # FontSelect
    # Select the font width your display uses for text mode. In most cases
    # this is selectable through one of the pins of your LCD board
    # Possible values: '6', '8'
    # Default value: '6'
    FontSelect=6


    # AutoMode
    # Enables or disables the usage of T6963C's auto mode which doubles
    # writing speed when enabled.
    # Possible values: 'yes', 'no'
    # Default value: 'yes'
    AutoMode=yes


    # StatusCheck
    # Enables or disables the usage of T6963C's status check. When using a
    # shielded cable for connecting your display, the disabling may be
    # possible. This results in doubling the speed of writing data to the
    # LCD.
    # Possible values: 'yes', 'no'
    # Default value: 'yes'
    StatusCheck=yes


    ########################################################################


    [serdisp]
    # serdisplib driver
    # This is a driver module for devices supported through serdisplib.
    # Default size: depends on your Controller setting
    Driver=serdisp


    # Controller
    # Select the controller your LCD uses named like in serdisplib.
    # Possible values: See README in serdisplib package
    Controller=optrex323
    Port=0x378
    #Device=/dev/parport0
    #Width=240
    #Height=128
    #UpsideDown=no
    #Invert=no
    Contrast=5
    Backlight=yes


    ########################################################################


    [noritake800]
    # noritake800 driver
    # This is an 8-bit driver module for Noritake Noritake 800(A) series VFD
    # displays. The VFD is operating in it's 8 bit-mode connected to a
    # single PC parallel port.
    # Default size: 128 x 64
    Driver=noritake800
    Port=0x378
    #Device=/dev/parport0
    Width=128
    Height=64
    #UpsideDown=no
    #Invert=no
    Brightness=50
    #AdjustTiming=0 # not used
    #RefreshDisplay=0 # not used


    # Wiring
    # Select the type of wiring your display is connected with.
    # Possible values: 'LiquidMp3', 'MZ'
    # Default value: 'LiquidMp3'
    Wiring=LiquidMp3




    MFG Satmen

    VDR1:
    Yavdr
    M3N78-VM-HDMI mit AMD4850e und 2 Technotrend 3200 DVB-S2
    TS35-Lirc

  • Hi,


    ich habe mir ja auch dieses schicke Display gekauft. Bis jetzt hatte ich auch noch keines in meinem VDR. Deshalb gleich mal vorweg:


    Habe VDR 1.3.18 und was bracuhe cih noch dafür um das Display zum laufen zu bekommen? Ich denke GraphLCD oder? Welche Version die unter vdr 1.3.18 läuft?


    Gruß


    marauder

  • graphlcd-0.1.2-pre4
    graphlcd-0.1.2-pre4-1.3.18.diff.gz findest du im Patch-Bereich
    Gruß
    Eurofinder


    P.S.: ansonsten Vorgehen wie im beiliegenden Zettel beschrieben

    Hardware: Linux4Meida cine S2 DVB-S2 * M3N78-VM *Athlon64 X2 4850e AM2 * 2 GB Ram* WD10EADS Caviar Green 1TB
    Software : gen2vdr

  • Hallo Leute,


    mit dem Display habe ich immer noch Darstellungsprobleme.
    Meine config:
    ct-vdr 3.0.6 (vdr 1.2.6-27 mit Kernel 2.4.27)
    graphlcd 0.1.1-3 (7-Pixel-Patch ist eingebaut!!!)


    Die untere Hälfte des Displays verschiebt sich von Zeit zu Zeit um einige
    Pixel nach links. Beim nächsten refresh oder beim Umschalten ist es dann wieder ok.
    Besonders schlimm ist es beim MP3-Plugin, bei nahezu jedem 2. refresh taucht die Verschiebung auf. Hat jemand eine Idee?
    Hier die graphlcd-Einstellungen aus der setup.conf:
    ...
    graphlcd.AdjustTiming = 0
    graphlcd.Display = 1
    graphlcd.IdentifyReplayType = 1
    graphlcd.Interface = 1
    graphlcd.Invert = 1
    graphlcd.ModifyReplayString = 1
    graphlcd.Orientation = 0
    graphlcd.OscillatorFrequency = 9600
    graphlcd.Plugin active = 1
    graphlcd.RefreshDisplay = 2
    graphlcd.ReplayLogo = 1
    graphlcd.ScrollMode = 0
    graphlcd.ScrollSpeed = 2
    graphlcd.ScrollTime = 500
    graphlcd.ShowChannel = 1
    graphlcd.ShowColorButtons = 1
    graphlcd.ShowDateTime = 1
    graphlcd.ShowETSymbols = 0
    graphlcd.ShowLogo = 1
    graphlcd.ShowMenu = 1
    graphlcd.ShowMessages = 1
    graphlcd.ShowNotRecording = 0
    graphlcd.ShowProgram = 1
    graphlcd.ShowSymbols = 1
    graphlcd.ShowTimebar = 1
    graphlcd.ShowVolume = 1
    graphlcd.WaitMethod = 3
    graphlcd.WaitPrio = 0
    graphlcd.Wiring = 1
    ...


    Gruss, Andreas.

    aktueller VDR: Silverstone GD04B, ASRock N100M, 8 GB RAM, M.2 SSD 128 GB, WD 4TB WD40EFAX, IP-TV NetCologne via teleraising.api und easyepg-lite, yavdr 0.7 mit VDR 2.6.6 (jammy), USB-IR mit Einschalter (Raspberry Pico) von Emma53

  • Hallöchen,


    kann mir einer für das 240 * 64 LCD ein gutes Gehäuse empfehlen? Will das nicht in meine Gehäuse einbauen, sondern separat.
    Gruß
    Eurofinder

    Hardware: Linux4Meida cine S2 DVB-S2 * M3N78-VM *Athlon64 X2 4850e AM2 * 2 GB Ram* WD10EADS Caviar Green 1TB
    Software : gen2vdr

  • moin,


    ich möchte meinem Kleinen :streichel jetz endlich auch mal ein LCD gönnen :) und hab nur noch eine Frage.


    Was für ein Backlight ist denn an dem LCD drann ???
    Warscheinlich stand das schon mal irgend wo im Thread hab aber nicht finden können ( :suche bringt nich wirklich was)



    danke und grüße thefox

    :vdr1
    Linvdr 0.7, mt-20050216, nvram-wakeup, Abit KT7 mit Athlon 1,2 GHz , 512 MB, 250 GB Samsung,
    Hauppauge DVB-s 2.1 mit CI + AC, Typhoon DVB-s Budget, LG DVD-Brenner, Lirc-serial

  • mahlzeit,
    ist nicht dein ernst, oder?? guck dir einfach mal den ersten beitrag in diesem thread an, oder besser - lies ihn!
    oder einfach das thema ... da stehen auch so ziemlich alle antworten auf deine fragen! :D


    gruss
    andre

  • hi all,


    @ thefox: es handelt sich um eine led beleuchtung, wahlweise blau oder weiss.


    @ marauder: ich schickt dir die anleitung gerne nochmal zu.


    @ loetkolben: sehr seltsam, ich hoffe wastl hat noch eine gute idee zu deinem problem. ansonsten werden wir uns sicher einig.


    grueße,


    tobias


    -- es sind noch ne ganze reihe lcds da, allerdings ist momentan pruefungphase, daher hab ich momentan nicht viel zeit welche fertig zu machen ---

    DH67BLB3 m. Intel G630T
    2x Tevii S480 Dual DVB-S2
    GeForce 520
    yaVDR 0.4

  • yup,


    hab gerade auch gesehen :lehrer2


    ja ja wer lesen kann ist klar im Vorteil , vielleicht sollte man genauer lesen und nicht :dösen


    .... ich ärgere mich :D


    thx thefox

    :vdr1
    Linvdr 0.7, mt-20050216, nvram-wakeup, Abit KT7 mit Athlon 1,2 GHz , 512 MB, 250 GB Samsung,
    Hauppauge DVB-s 2.1 mit CI + AC, Typhoon DVB-s Budget, LG DVD-Brenner, Lirc-serial

  • @loetkolben


    kann mir nicht vorstellen, dass das ein problem mit dem display ist. eher timingproblem in der ansteuerung v. graphlcd. hast du schon die aktuellste version von graphlcd probiert?


    wenn du ein wenig geduld hast: die naechste version v. graphlcd wird eine anbindung an die serdisplib ueber libdl haben (patches bereits bei powarman) -> zur compilezeit v. graphlcd muss keine serdisplib mehr am system vorhanden sein, dh. packager brauchen darauf keine ruecksicht mehr nehmen.


    dann einfach serdisplib irgendwo hin installieren, wo der library-suchpfad diese findet -> in der naechsten version der serdisplib ist ein eigener sed1330-treiber dabei (ich steuere mein display bereits auf diesem weg an), mein treiber hat eine klein wenig andere ansteuerung + etwas anderes timingverhalten -> vielleicht klappts damit besser (wenn meine library bis zur naechsten version v. graphlcd noch nicht released sein sollte: einfach PM an mich, schicke dir den aktuellen stand (PowerLCD-wiring wird bereits einwandfrei unterstuetzt, die anderen wirings noch nicht).


    /wastl

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!