+ Antworten
Seite 7 von 7 ErsteErste ... 567
Ergebnis 61 bis 66 von 66
  1. #61
    VIP Avatar von santa
    Registriert seit
    07.05.2012
    Beiträge
    7.844
    Thanks
    1.070
    Thanked 5.005 Times in 1.790 Posts
    M für mittellang drücken:-D

    Denke der kann nur zwischen kurz und lang unterscheiden, aber nicht zwischen Mittel und was anderem.

    Falls dahinter noch nen r steht, also mr zum Beispiel, dann ist das wiederholend, also wird ständig neu erkannt, zb. für Lautstärke
    mfg santa

    GigaBlue Quad Plus -->Yamaha AV Receiver-->Panasonic Plasma

    derzeit noch in Betrieb:
    IPBox 9000, Technisat Digicorder HDS2+, AT 500


  2. The Following User Says Thank You to santa For This Useful Post:



  3. #62
    Moderator Avatar von TheChip
    Registriert seit
    18.05.2012
    Beiträge
    3.912
    Thanks
    649
    Thanked 1.127 Times in 852 Posts
    Das m steht für make, also Taste normal gedrückt. Das b für break, das heißt, der Befehl wird erst beim Loslassen der Taste ausgeführt. Und l schließlich steht für longpress, also Taste fünf Sekunden gedrückt.
    GB Quad 4K + GB Quad + Octagon SF4008 + Formuler F1

    Fragen bitte ins Forum und nicht in meinen PN-Briefkasten!

    FAQ

  4. The Following 2 Users Say Thank You to TheChip For This Useful Post:



  5. #63
    VIP Avatar von santa
    Registriert seit
    07.05.2012
    Beiträge
    7.844
    Thanks
    1.070
    Thanked 5.005 Times in 1.790 Posts
    danke für chip für die erklärung, wenn bei m also bei drücken die funktion ausgeführt wird, dann erklärt sich alles.
    bei b wird gewartet bis die taste losgelassen wird, somit ist nur mit l nur mit b möglich, da eben die Funktion
    nicht wie mit m sofort ausgeführt wird.
    mfg santa

    GigaBlue Quad Plus -->Yamaha AV Receiver-->Panasonic Plasma

    derzeit noch in Betrieb:
    IPBox 9000, Technisat Digicorder HDS2+, AT 500


  6. The Following User Says Thank You to santa For This Useful Post:



  7. #64
    VIP
    Registriert seit
    05.11.2012
    Beiträge
    587
    Thanks
    83
    Thanked 101 Times in 80 Posts
    Habe mir die keymap und infobargenerics angepasst, Favoriten sind auf der Taste Favoriten. Leider funktioniert das HDMU-Mediacenter, Dreamplex und Mediaportal nicht auf der Hometaste. Ich nehme an, dass die Taste Home in die evremote2 eingefügt werden muss (Box reagiert nicht einmal auf die Taste.). Könnte jemand das vornehmen und die Datei dann zur Verfügung stellen? Danke.

    MfG


  8. #65
    Developer
    Registriert seit
    18.07.2012
    Ort
    Ridderkerk, Niederlande
    Beiträge
    634
    Thanks
    144
    Thanked 712 Times in 304 Posts
    I assume you mean by the home key the key marked PORTAL. I also assume the receiver does not give a remote feedback (dot in left of VF display) when you press it. If that is the case, you use an evremote2 that lacks the support for that key.

    If you build your own image, unpack attached Spark.c.zip to Spark.c and replace in tdt/cvs/apps/misc/tools/evremote2, then rebuild the misc-tools.

    If not, try the evremote2 in the attached Spark.c.zip file (may not work because it comes from my own image), or look in this forum for one that claims to support PORTAL. Caution: you may end up with a receiver that cannot be controlled by the remote control, so be prepared to use the frontpanel keys or to reflash.

    Finally, check that KeyBindings.py (in /usr/lib/enigma2/python/Tools) contains this line in the RCs with ID2 section:

    KEYIDS["KEY_OPEN"]: ("PORTAL",),

    In keymap.xml the PORTAL key is called KEY_OPEN as you can see.

    Regards,


    Audioniek.

    Attachment: Spark.c.zip
    Receivers: Rebox: RE-4000, 8000, 9000, 2200, 2210, 2220, 4200, 4210, 4220, 8220, 8500, SAB Unix Triple, Golden Media Spark TripleX, Amiko Alien 2+, Sogno Spark Revolution, Kathrein UFS910(1 & 14W)/912/913/922(CX24116 & AVL2108 tuners), Vizyon revolution 820HD PVR, AB IPBox 91HD/9000HD/9000HD rev.2, Xsarius Alpha HD10, nBox BKSA/BSLA/BXZB/BZZB, Vitamin HD 5000
    Sats: Astra 1, 2 & 3, Hotbird
    Main activity: building my own E2 images for Fortis receivers

  9. The Following User Says Thank You to Audioniek For This Useful Post:



  10. #66
    VIP
    Registriert seit
    05.11.2012
    Beiträge
    587
    Thanks
    83
    Thanked 101 Times in 80 Posts
    Thx, but it has been running everything as it should. I use evremote2 from PKT image.

    InfobarGenerics
    ......
    'openHDMUMediaCenter': (self._bmc, _('open HDMU Media Center')),
    'openMediaPortal': (self._openMediaPortal, _('open MediaPortal')),
    'openDreamPlex': (self._openDreamPlex, _('open DreamPlex')),
    'showFavourites': (self.showFavourites, _('Favourites')),
    'sleepTimer': (self.sleepTimer, 'Sleeptimer'),
    'timer': (self.timer, 'Timer'),
    'showSatellites': (self.showSatellites, _('Satellite list')),
    .....

    def _bmc(self):
    from Plugins.Extensions.BMediaCenter.plugin import HDMUMC_MainMenu
    self.session.open(HDMUMC_MainMenu)

    def _openDreamPlex(self):
    from Plugins.Extensions.DreamPlex.plugin import DPS_MainMenu
    self.session.open(DPS_MainMenu)

    def _openMediaPortal(self):
    if config.mediaportal.ansicht.value == 'liste':
    from Plugins.Extensions.MediaPortal.plugin import haupt_Screen
    self.session.open(haupt_Screen)
    else:
    from Plugins.Extensions.MediaPortal.plugin import haupt_Screen_Wall
    self.session.open(haupt_Screen_Wall, config.mediaportal.filter.value)

    def showFavourites(self):
    self.servicelist.showFavourites()
    self.session.execDialog(self.servicelist)

    def sleepTimer(self):
    from Screens.SleepTimerEdit import SleepTimerEdit
    self.session.open(SleepTimerEdit)

    def timer(self):
    from Screens.TimerEdit import TimerEditList
    self.session.open(TimerEditList)

    def showSatellites(self):
    self.servicelist.showSatellites()
    self.session.execDialog(self.servicelist)
    keymap
    .....
    <key id="KEY_V" mapto="aspectratio" flags="m" />
    <key id="KEY_FAVORITES" mapto="showFavourites" flags="m" />
    <!-- <key id="KEY_OPEN" mapto="openHDMUMediaCenter" flags="b" /> -->
    <key id="KEY_OPEN" mapto="openDreamPlex" flags="b" /> / portal button
    <key id="KEY_OPEN" mapto="openMediaPortal" flags="l" /> / portal button
    <key id="KEY_TIME" mapto="timer" flags="b" />
    <key id="KEY_TIME" mapto="sleepTimer" flags="l" />
    <key id="KEY_SAT" mapto="showSatellites" flags="m" />
    ....

    <key id="KEY_0" mapto="0" flags="m" />
    <key id="KEY_BACK" mapto="0" flags="m" /> / recall button

    ......

    <key id="KEY_F3" mapto="startTeletext" flags="m" /> / F1 is help
    FB image

    MfG


Ähnliche Themen

  1. [ufs910] Bug - Liste ufs910
    Von channel im Forum Beta Enigma2 Bereich für alle SH4 STB
    Antworten: 110
    Letzter Beitrag: 14.11.2013, 12:23
  2. [ufs910] [ufs910] Test 1394
    Von batkogogo im Forum Beta Enigma2 Bereich für alle SH4 STB
    Antworten: 3
    Letzter Beitrag: 04.12.2012, 19:44
  3. [ufs910] Test 220 auf UFS910
    Von Uljanow im Forum Beta Enigma2 Bereich für alle SH4 STB
    Antworten: 19
    Letzter Beitrag: 08.05.2012, 12:38
  4. Test 204er auf UFS910
    Von Uljanow im Forum Beta Enigma2 Bereich für alle SH4 STB
    Antworten: 9
    Letzter Beitrag: 08.05.2012, 11:29

Berechtigungen

  • Neue Themen erstellen: Ja
  • Themen beantworten: Ja
  • Anhänge hochladen: Ja
  • Beiträge bearbeiten: Ja
  •