Thread: Blind scans

Results 1 to 10 of 17

Hybrid View

  1. Collapse Details
    #1
    Join Date
    Mar 2018
    Location
    West Central Florida
    Posts
    630
    Post Thanks / Like
    I use user defined lnd settings
    Lolo 10750
    Lohi 10750
    Threshold 11700 or 12200 makes no difference.
    polarization
    tone off
    Reply With Quote
     

  2. Collapse Details
    #2
    Join Date
    Dec 2010
    Location
    Atlanta, Ga.
    Posts
    8,391
    Post Thanks / Like
    It would also be a good idea to use the correct lnb settings in Tuner configuration too.
    Enigma2 NimManager defines Circular lnb as a 10750 l.o. Only C band and Circular lnb types are defined in the blindscan plugin. So the default in the blindscan plugin is universal lnb, and that is what the blindscan plugin will use unless the plugin "sees" a C band or Circular lnb type!

    Here is where the blindscan plugin defines lnb types:
    def SatBandCheck(self) :
    pos = self.getOrbPos()
    band = 'Unknown'
    self.is_c_band_scan = False
    self.is_circular_band_scan = False
    self.is_Ku_band_scan = False
    self.is_user_defined_scan = False
    self.suggestedPolarisation = _("vertical & horizontal")
    if band == "Unknown" and self.isLNB(pos, "c_band"):
    band = 'C'
    self.is_c_band_scan = True
    self.suggestedPolarisation = _("vertical & horizontal")
    if band == "Unknown" and self.isLNB(pos, "circular_lnb"):
    band = 'circular'
    self.is_circular_band_scan = True
    self.suggestedPolarisation = _("circular right & circular left")
    if band == "Unknown" and self.isLNB(pos, "universal_lnb"):
    band = 'Ku'
    self.is_Ku_band_scan = True
    if band == "Unknown" and self.isLNB(pos, "user_defined"):
    band = 'user_defined'
    self.is_user_defined_scan = True
    # if satellites.xml didn't contain any entries for this satellite check
    # LNB type instead. Assumes the tuner is configured correctly for C-band.
    print "[Blind scan] SatBandCheck band = %s" % (band)
    .
    .
    .
    Meine Dreambox One ist ein Stück Scheiße!.
    Reply With Quote
     

  3. Thanks Megatron817 thanked for this post

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •