Beiträge von verona81

    also wenn man da ein celeron mit 2ghz reinbaut ist doch ideal. klar braucht halt mehr strom als so ein epia aber soviel verbraucht so ein celeron auch nicht und wenn man so mal bei den anderen in die signatur schaut haben schon viele ein kleinen p4 drin

    hallo leute habe ein riesen problem mit mein lcd
    hab das display GU140X32F-7806 mit 140x32 Pixel was ja auch ganz am anfang von hulk2004 vorgestellt wurde. wer kann mir erklären wie ich den unter linvdr07 am laufen bekomme. hab das display schon zusammengelötet wie es hier beschrieben wird. bekomme leider keine anzeige auf den display. kann mir jemand ein schritt für schritt kurz anleitung erstellen. hab da was gelesen das man was in der runvdr reinschreiben muss unter linvdr. hab so mir mal angeschaut aber weiss da auch nicht weiter. erstmal vielen dank vielleicht kann mir ja jemand helfen

    muss ich denn nichts in der runvdr eintragen? der controller heisst HD44780-LCD-Standard Displays das andere probiere ich jetzt aus


    bei showpic bekomme ich immer so eine anwort


    -bash: showpic: command not found


    ach ja. ich finde niergendwo die datei graphlcd.conf!!!!!!!!!!

    1.also unter einstellung und plugin garphlcd kann ich kein wiring einstellen.
    2. showpic: was bedeutet das. wo muss ich das eintippen bestimme über die console oder? kannst du mir mal ein beispiel geben.
    bin noch anfänger :( tut mir leider für die fragen aber ich komm nicht weiter


    mfg verona

    hallo


    hab ein problem mal wieder X(


    hab jetzt endlich mein display GU140X32F-7806 angeschlossen nach der anleitung von hulk2004. benutze linvdr06 von mentox mit graphlcd0.1.0. bekomme es nicht zu laufen. habe jetzt hier im forum was gefunden das man unter linvdr in der runvdr noch was eintragen muss. ich weiss aber nicht was und wo? habe hier mal mein runvdr mit angefügt. wäre nett wenn mir jemand helfen könnte.






    #!/bin/bash


    . /etc/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"


    export VDRTTY="10"


    #input


    MODULES="
    videodev
    dvb-core dvb_shutdown_timeout=0
    alps_bsrv2
    alps_tdmb7
    alps_tdlb7
    grundig_29504-401
    grundig_29504-491
    stv0299
    ves1820
    input
    evdev
    dvb-ttpci
    "


    for PLUGIN in `unique.pl $PLUGINLIST`;
    do
    PLUGINS="$PLUGINS -P$PLUGIN"
    done


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


    loaddriver() {
    OLDIFS=$IFS
    IFS=$'\t'$'\n'
    for module in $MODULES; do
    IFS=$OLDIFS
    loadmodule $module
    IFS=$'\t'$'\n'
    done
    IFS=$OLDIFS
    }


    unloaddriver() {
    OLDIFS=$IFS
    IFS=""
    MODULES="`echo $MODULES | tac`"
    IFS=$OLDIFS

    OLDIFS=$IFS
    IFS=$'\t'$'\n'
    for module in $MODULES; do
    #module=`echo $module | sed -e s/\\\.o.*//`
    modprobe -r $module
    done
    IFS=$OLDIFS
    }


    case "$1" in
    start)
    /bin/bash -c '\
    /bin/echo $$ > /var/run/vdr.pid; \
    while /bin/true; do \
    start=`date +%s`; \
    /etc/init.d/runvdr up 2>&1 >/dev/null; \
    stop=`date +%s`; \
    if [ $(($stop - $start)) -lt 30 ] ; then \
    echo "Something went wrong. VDR respawning to fast, sleep 2 minutes" > /dev/tty$VDRTTY; \
    sleep 120; \
    fi; \
    sleep 1; \
    /etc/init.d/runvdr down; \
    sleep 5; \
    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)
    loaddriver

    if [ $USE_INTERNAL_IR != "yes" ]; then
    #setserial /dev/ttyS0 uart none
    loadmodule lirc_serial
    $BINDIR/lircd
    else
    #if [ $INVERT_SIGNAL = "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

    if [ x$START_FBTV == x"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

    sleep 5 && nice -n 19 vdradmind.pl &
    umask 0002
    $BINDIR/vdr -L $PLUGINDIR $PLUGINS $COMMON_PARAMETER -v /video0 -c $CONFDIR -w 900 -E /ramdisk/epg.data -s /usr/bin/poweroff.pl < /dev/tty$VDRTTY
    ;;
    down)
    vdradmind.pl -k
    PID=`ps auxw | grep "vdr -L" | grep -v grep | awk '{ print $2 }'`
    if [ x"$PID" != "x" ]; then
    echo $pid
    kill $PID
    fi
    sleep 1

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


    unloaddriver

    killall lircd 2>/dev/null >/dev/null
    rmmod lirc_serial
    ;;
    loaddriver)
    loaddriver
    ;;
    unloaddriver)
    unloaddriver
    ;;
    *)
    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

    hab mal alles reinkopiert von dmesg.



    ********************
    ACPI: PCI Interrupt Link [LNKF] enabled at IRQ 12
    ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 11
    ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 9
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 12
    PCI: Using ACPI for IRQ routing
    PCI: if you experience problems, try using option 'pci=noacpi' or even 'acpi=off
    '
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Linux NET4.0 for Linux 2.4
    Based upon Swansea University Computer Society NET3.039
    Initializing RT netlink socket
    Starting kswapd
    Journalled Block Device driver loaded
    devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au)
    devfs: boot_options: 0x0
    Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
    NTFS driver v1.1.22 [Flags: R/O]
    ACPI: Power Button (FF) [PWRF]
    ACPI: Sleep Button (CM) [FUTS]
    ACPI: Fan [FAN] (on)
    ACPI: Processor [CPU0] (supports C1)
    ACPI: Processor [CPU1] (supports C1)
    ACPI: Thermal Zone [THRM] (30 C)
    vesafb: framebuffer at 0xd8000000, mapped to 0xd0821000, size 1875k
    vesafb: mode is 800x600x16, linelength=1600, pages=67
    vesafb: protected mode interface info at c000:5312
    vesafb: scrolling: redraw
    vesafb: directcolor: size=0:5:6:5, shift=0:11:5:0
    Console: switching to colour frame buffer device 100x37
    fb0: VESA VGA frame buffer device
    pty: 256 Unix98 ptys configured
    Real Time Clock Driver v1.10f
    FDC 0 is a post-1991 82077
    RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
    loop: loaded (max 8 devices)
    Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    SIS5513: IDE controller at PCI slot 00:02.5
    SIS5513: chipset revision 0
    SIS5513: not 100% native mode: will probe irqs later
    SIS5513: SiS 962/963 MuTIOL IDE UDMA133 controller
    ide0: BM-DMA at 0x4000-0x4007, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0x4008-0x400f, BIOS settings: hdc:pio, hdd:pio
    hda: SAMSUNG SV1604N, ATA DISK drive
    blk: queue c03e8480, I/O limit 4095Mb (mask 0xffffffff)
    hdc: TOSHIBA ODD-DVD SD-M1802, ATAPI CD/DVD-ROM drive
    ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    ide1 at 0x170-0x177,0x376 on irq 15
    hda: attached ide-disk driver.
    hda: host protected area => 1
    hda: 312581808 sectors (160042 MB) w/2048KiB Cache, CHS=19457/255/63, UDMA(100)
    hdc: attached ide-cdrom driver.
    hdc: ATAPI 48X DVD-ROM drive, 512kB Cache, UDMA(33)
    Uniform CD-ROM driver Revision: 3.12
    Partition check:
    /dev/ide/host0/bus0/target0/lun0: p1
    SCSI subsystem driver Revision: 1.00
    scsi0 : SCSI host adapter emulation for IDE ATAPI devices
    usb.c: registered new driver usbdevfs
    usb.c: registered new driver hub
    ehci_hcd 00:03.3: Silicon Integrated Systems [SiS] USB 2.0 Controller
    ehci_hcd 00:03.3: irq 9, pci mem d09fb000
    usb.c: new USB bus registered, assigned bus number 1
    PCI: cache line size of 128 is not supported by device 00:03.3
    ehci_hcd 00:03.3: USB 2.0 enabled, EHCI 1.00, driver 2003-Dec-29/2.4
    hub.c: USB hub found
    hub.c: 6 ports detected
    host/uhci.c: USB Universal Host Controller Interface driver v1.1
    host/usb-ohci.c: USB OHCI at membase 0xd09fd000, IRQ 13
    host/usb-ohci.c: usb-00:03.0, Silicon Integrated Systems [SiS] USB 1.0 Controlle
    r
    usb.c: new USB bus registered, assigned bus number 2
    hub.c: USB hub found
    hub.c: 2 ports detected
    host/usb-ohci.c: USB OHCI at membase 0xd09ff000, IRQ 12
    host/usb-ohci.c: usb-00:03.1, Silicon Integrated Systems [SiS] USB 1.0 Controlle
    r (#2)
    linvdr:~# dmesg
    0x00000000) @ 0x0fff3040
    ACPI: MADT (v001 AWARD AWRDACPI 0x42302e31 AWRD 0x00000000) @ 0x0fff6900
    ACPI: DSDT (v001 AWARD AWRDACPI 0x00001000 MSFT 0x0100000d) @ 0x00000000
    Kernel command line: vga=0x314 root=/dev/hda1 quiet
    Initializing CPU#0
    Detected 2004.601 MHz processor.
    Console: colour dummy device 80x25
    Calibrating delay loop... 3997.69 BogoMIPS
    Memory: 255816k/262080k available (1892k kernel code, 5880k reserved, 752k data, 116k init, 0k highmem)
    Dentry cache hash table entries: 32768 (order: 6, 262144 bytes)
    Inode cache hash table entries: 16384 (order: 5, 131072 bytes)
    Mount cache hash table entries: 512 (order: 0, 4096 bytes)
    Buffer cache hash table entries: 16384 (order: 4, 65536 bytes)
    Page-cache hash table entries: 65536 (order: 6, 262144 bytes)
    CPU: Trace cache: 12K uops, L1 D cache: 8K
    CPU: L2 cache: 128K
    Intel machine check architecture supported.
    Intel machine check reporting enabled on CPU#0.
    CPU: After generic, caps: bfebfbff 00000000 00000000 00000000
    CPU: Common caps: bfebfbff 00000000 00000000 00000000
    CPU: Intel(R) Celeron(R) CPU 2.00GHz stepping 09
    Enabling fast FPU save and restore... done.
    Enabling unmasked SIMD FPU exception support... done.
    Checking 'hlt' instruction... OK.
    Checking for popad bug... OK.
    POSIX conformance testing by UNIFIX
    mtrr: v1.40 (20010327) Richard Gooch (rgooch@atnf.csiro.au)
    mtrr: detected mtrr type: Intel
    ACPI: Subsystem revision 20040326
    PCI: PCI BIOS revision 2.10 entry at 0xfb400, last bus=1
    PCI: Using configuration type 1
    ACPI: IRQ9 SCI: Level Trigger.
    ACPI: Interpreter enabled
    ACPI: Using PIC for interrupt routing
    ACPI: System [ACPI] (supports S0 S3 S4 S5)
    ACPI: PCI Root Bridge [PCI0] (00:00)
    PCI: Probing PCI hardware (bus 00)
    ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKB] (IRQs *3 4 5 6 7 9 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 *12 14 15)
    ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15)
    ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11 *12 14 15)
    ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
    ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 7 *9 10 11 12 14 15)
    PCI: Probing PCI hardware
    ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 3
    ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 11
    ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 5
    ACPI: PCI Interrupt Link [LNKE] enabled at IRQ 13
    ACPI: PCI Interrupt Link [LNKF] enabled at IRQ 12
    ACPI: PCI Interrupt Link [LNKG] enabled at IRQ 11
    ACPI: PCI Interrupt Link [LNKH] enabled at IRQ 9
    ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 12
    PCI: Using ACPI for IRQ routing
    PCI: if you experience problems, try using option 'pci=noacpi' or even 'acpi=off'
    isapnp: Scanning for PnP cards...
    isapnp: No Plug & Play device found
    Linux NET4.0 for Linux 2.4
    Based upon Swansea University Computer Society NET3.039
    Initializing RT netlink socket
    Starting kswapd
    Journalled Block Device driver loaded
    devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au)
    devfs: boot_options: 0x0
    Installing knfsd (copyright (C) 1996 okir@monad.swb.de).
    NTFS driver v1.1.22 [Flags: R/O]
    ACPI: Power Button (FF) [PWRF]
    ACPI: Sleep Button (CM) [FUTS]
    ACPI: Fan [FAN] (on)
    ACPI: Processor [CPU0] (supports C1)
    ACPI: Processor [CPU1] (supports C1)
    ACPI: Thermal Zone [THRM] (30 C)
    vesafb: framebuffer at 0xd8000000, mapped to 0xd0821000, size 1875k
    vesafb: mode is 800x600x16, linelength=1600, pages=67
    vesafb: protected mode interface info at c000:5312
    vesafb: scrolling: redraw
    vesafb: directcolor: size=0:5:6:5, shift=0:11:5:0
    Console: switching to colour frame buffer device 100x37
    fb0: VESA VGA frame buffer device
    pty: 256 Unix98 ptys configured
    Real Time Clock Driver v1.10f
    FDC 0 is a post-1991 82077
    RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize
    loop: loaded (max 8 devices)
    Uniform Multi-Platform E-IDE driver Revision: 7.00beta4-2.4
    ide: Assuming 33MHz system bus speed for PIO modes; override with idebus=xx
    SIS5513: IDE controller at PCI slot 00:02.5
    SIS5513: chipset revision 0
    SIS5513: not 100% native mode: will probe irqs later
    SIS5513: SiS 962/963 MuTIOL IDE UDMA133 controller
    ide0: BM-DMA at 0x4000-0x4007, BIOS settings: hda:DMA, hdb:pio
    ide1: BM-DMA at 0x4008-0x400f, BIOS settings: hdc:pio, hdd:pio
    hda: SAMSUNG SV1604N, ATA DISK drive
    blk: queue c03e8480, I/O limit 4095Mb (mask 0xffffffff)
    hdc: TOSHIBA ODD-DVD SD-M1802, ATAPI CD/DVD-ROM drive
    ide0 at 0x1f0-0x1f7,0x3f6 on irq 14
    ide1 at 0x170-0x177,0x376 on irq 15
    hda: attached ide-disk driver.
    hda: host protected area => 1
    hda: 312581808 sectors (160042 MB) w/2048KiB Cache, CHS=19457/255/63, UDMA(100)
    hdc: attached ide-cdrom driver.
    hdc: ATAPI 48X DVD-ROM drive, 512kB Cache, UDMA(33)
    Uniform CD-ROM driver Revision: 3.12
    Partition check:
    /dev/ide/host0/bus0/target0/lun0: p1
    SCSI subsystem driver Revision: 1.00
    scsi0 : SCSI host adapter emulation for IDE ATAPI devices
    usb.c: registered new driver usbdevfs
    usb.c: registered new driver hub
    ehci_hcd 00:03.3: Silicon Integrated Systems [SiS] USB 2.0 Controller
    ehci_hcd 00:03.3: irq 9, pci mem d09fb000
    usb.c: new USB bus registered, assigned bus number 1
    PCI: cache line size of 128 is not supported by device 00:03.3
    ehci_hcd 00:03.3: USB 2.0 enabled, EHCI 1.00, driver 2003-Dec-29/2.4
    hub.c: USB hub found
    hub.c: 6 ports detected
    host/uhci.c: USB Universal Host Controller Interface driver v1.1
    host/usb-ohci.c: USB OHCI at membase 0xd09fd000, IRQ 13
    host/usb-ohci.c: usb-00:03.0, Silicon Integrated Systems [SiS] USB 1.0 Controller
    usb.c: new USB bus registered, assigned bus number 2
    hub.c: USB hub found
    hub.c: 2 ports detected
    host/usb-ohci.c: USB OHCI at membase 0xd09ff000, IRQ 12
    host/usb-ohci.c: usb-00:03.1, Silicon Integrated Systems [SiS] USB 1.0 Controller (#2)
    usb.c: new USB bus registered, assigned bus number 3
    hub.c: USB hub found
    hub.c: 2 ports detected
    host/usb-ohci.c: USB OHCI at membase 0xd0a01000, IRQ 11
    host/usb-ohci.c: usb-00:03.2, Silicon Integrated Systems [SiS] USB 1.0 Controller (#3)
    usb.c: new USB bus registered, assigned bus number 4
    hub.c: USB hub found
    hub.c: 2 ports detected
    Initializing USB Mass Storage driver...
    usb.c: registered new driver usb-storage
    USB Mass Storage support registered.
    NET4: Linux TCP/IP 1.0 for NET4.0
    IP Protocols: ICMP, UDP, TCP, IGMP
    IP: routing cache hash table of 2048 buckets, 16Kbytes
    TCP: Hash tables configured (established 16384 bind 16384)
    NET4: Unix domain sockets 1.0/SMP for Linux NET4.0.
    EXT3-fs: INFO: recovery required on readonly filesystem.
    EXT3-fs: write access will be enabled during recovery.
    kjournald starting. Commit interval 5 seconds
    EXT3-fs: recovery complete.
    EXT3-fs: mounted filesystem with ordered data mode.
    VFS: Mounted root (ext3 filesystem) readonly.
    Freeing unused kernel memory: 116k freed
    EXT3 FS 2.4-0.9.19, 19 August 2002 on ide0(3,1), internal journal
    Adding Swap: 262136k swap-space (priority -1)
    Intel(R) PRO/1000 Network Driver - version 5.2.30.1-k1
    Copyright (c) 1999-2004 Intel Corporation.
    eth0: Intel(R) PRO/1000 Network Connection
    Linux video capture interface: v1.00
    DVB: registering new adapter (Technotrend/Hauppauge PCI rev2.1 or 2.2).
    stv0299.c: setup for tuner BSRU6, TDQB-S00x
    DVB: registering frontend 0:0 (STV0299/TSA5059/SL1935 based)...
    DVB: AV7110(0) - firm f0240009, rtsl b0250018, vid 71010068, app 8000261b
    DVB: AV7110(0) - firmware supports CI link layer interface
    av7110(0): Crystal audio DAC detected
    Technotrend/Hauppauge PCI rev2.1 or 2.2 adapter 0 has MAC addr = 00:d0:5c:22:fe:35
    e1000: eth0 NIC Link is Up 100 Mbps Full Duplex
    linvdr:~#
    ******************************

    hi


    nach benutzen der suchfunktion komm ich leider nicht weiter


    hab in mein vdr ein zweite dvb-s karte eingebaut. leider wird sie nicht erkannt. kann bei einstellung keine zweite karte auswählen. habe linvdr0.6 und ein nexus2.1 und eine tt1.5 drin. die letztere wird nicht erkannt. wer kann mir helfen

    hab das jetzt mal mit eine 100nf kondesator ausprobiert hat nichts gebracht. das bild sieht so aus als hätte man bei einen analogen sat receiver ein ganz schlechtes signal. hab es einfach von nexus kabelpeitsche per cinch an das display angeschlossen. komisch ist auch das erst kein bild kommt sondern nach ein paar sec. und nach ein paar sec. wieder verschwindet ist schon sehr ungewöhnlich. werde morgen mal ein paar bilder reinstellen vielleicht kann mir dann ja jemand weiterhelfen.


    mfg verona

    hi leute


    ich hab jetzt mal so ein psone display nachbau in die finger bekommen. steht hinten irgendwas mit bigben drauf und so. sieht auch ganz anders aus als die originalen. hab ich gleich mal versucht anzuschliesen. das bild ist total verzerrt und "läuft" die ganze zeit. liegt das daran das die nicht so eine hohe auflösung haben wie die originalen? habe ich einfach per cinch angeschlossen. ist es möglich mit solch ein display halbwegs das osd darzustellen?


    mfg verona

    hi leute


    ich hab jetzt mal so ein nachbau in die finger bekommen. steht hinten irgendwas mit bigben drauf und so. sieht auch ganz anders aus als die originalen. hab ich gleich mal versucht anzuschliesen. das bild ist total verzerrt und "läuft" die ganze zeit. liegt das daran das die nicht so eine hohe auflösung haben wie die originalen? habe ich einfach per cinch angeschlossen. ist es möglich mit solch ein display halbwegs das osd darzustellen?


    mfg verona

    hi leute


    bin bei der suche auf psone displays auf folgendes gestoßen.
    es gibt teilweise untschiedliche displays einmal 4Zoll oder 5Zoll. sie sehen vom äußerlichen etwas anders aus. gibt es da untschiede von der qualität vom bild her oder habe die nur untschiedlich große displays?

    ups. das mit der reaktionszeit ist wirklich ziemlich langsam. das hab ich wohl überlesen :rolleyes: ich glaub ich schau mir mal besser etwas in richtung psone display an. ist auch einieges günstiger