Jump to content


Photo

AutoDiseqc issues


  • Please log in to reply
20 replies to this topic

#1 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted 26 December 2024 - 16:01

My satellite equipment consists of dish with 4 Quattro-LNB's connected to a 17/8 Diseqc 1.0 Multiswitch.
Although this setup is quite common, AutoDiseqc fails to detect the satellites correctly on my Xtrend ET9200.

I wonder if an expert, familiar with the source code, could help?


 



Re: AutoDiseqc issues #2 WanWizard

  • PLi® Core member
  • 70,969 posts

+1,835
Excellent

Posted 26 December 2024 - 16:12

That has nothing to do with code.

 

Whan is needed is a list, with per satellite position a transponder which can be locked that is absolutely unique amongst all sats in the list  (to avoid false hits.

 

You can find the current list here: https://github.com/O...toDiseqc.py#L25

 

p.s. not common enough, I've got two of those switches here, one new-in-box. Nobody's interested ;).


Currently in use: VU+ Duo 4K (2xFBC S2), VU+ Solo 4K (1xFBC S2), uClan Usytm 4K Ultimate (S2+T2), Octagon SF8008 (S2+T2), Zgemma H9.2H (S2+T2)

Due to my bad health, I will not be very active at times and may be slow to respond. I will not read the forum or PM on a regular basis.

Many answers to your question can be found in our new and improved wiki.


Re: AutoDiseqc issues #3 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted 26 December 2024 - 16:26

You've posted a link to SatFinder. I was talking about AutoDiseqc.

 

I know that unique frequencies have to be scanned. That is the case, so no problem with that.


Edited by Stan, 26 December 2024 - 16:36.


Re: AutoDiseqc issues #4 Dimitrij

  • PLi® Core member
  • 10,382 posts

+354
Excellent

Posted 26 December 2024 - 16:53

Once, about 10 years ago, I noticed on some receivers that they not tune eDVBFrontendParametersSatellite.System_DVB_S2 or some eDVBFrontendParametersSatellite.FEC.

Or problem in 17/8 Diseqc 1.0 Multiswitch.


Edited by Dimitrij, 26 December 2024 - 17:01.

GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: AutoDiseqc issues #5 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted 26 December 2024 - 16:59

Could we clarify some basics first? Why is there an option in AutoDiseqc "Set voltage and 22kHz"? It is not needed in a simple Diseqc environment.


Edited by Stan, 26 December 2024 - 17:01.


Re: AutoDiseqc issues #6 littlesat

  • PLi® Core member
  • 57,486 posts

+708
Excellent

Posted 26 December 2024 - 18:17

Sometimes it is needed in the simple mode… but maybe not when all is in the autodiseqc mode.


WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: AutoDiseqc issues #7 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted 26 December 2024 - 18:41

Simple mode is by definition without cascaded switches, right?



Re: AutoDiseqc issues #8 littlesat

  • PLi® Core member
  • 57,486 posts

+708
Excellent

Posted Yesterday, 09:18

It was there for >20 years at that time you had 22 KHz switches and the dmm7000 had a 12 V output for a relay.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: AutoDiseqc issues #9 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Yesterday, 16:22

Nevertheless, it should reliably detect the connected satellites in common configurations. And it doesn't.
Another annoying thing is, that it changes the selected configuration. When chosen A/B/C/D it should keep this mode after scanning, no matter what the result is.

 

Attached File  before_scan.jpg   78.45KB   0 downloadsAttached File  after_scan.jpg   59.87KB   0 downloads



Re: AutoDiseqc issues #10 Dimitrij

  • PLi® Core member
  • 10,382 posts

+354
Excellent

Posted Yesterday, 16:33

Problem this

			if mode == "diseqc_a_b_c_d":
				list.append((self.indent % _("Port C"), nim.diseqcC, _("Select the satellite which is connected to Port-C of your switch. If you are unsure select 'automatic' and the receiver will attempt to determine this for you. If nothing is connected to this port, select 'nothing connected'.")))
				list.append((self.indent % _("Port D"), nim.diseqcD, _("Select the satellite which is connected to Port-D of your switch. If you are unsure select 'automatic' and the receiver will attempt to determine this for you. If nothing is connected to this port, select 'nothing connected'.")))
				if (nim.diseqcC.value == '3600') or (nim.diseqcD.value == '3600'):
					self.autodiseqc_ports = 4

Maybe

if mode == "diseqc_a_b_c_d":
  if self.autodiseqc_ports:
     self.autodiseqc_ports = 4

 


GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K


Re: AutoDiseqc issues #11 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Yesterday, 16:43

Satconfig.py?

 

I'll test...


Edited by Stan, Yesterday, 16:52.


Re: AutoDiseqc issues #12 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Yesterday, 16:57

Nope. Now you can select only Port A and Port B.in mode A/B/C/D.



Re: AutoDiseqc issues #13 littlesat

  • PLi® Core member
  • 57,486 posts

+708
Excellent

Posted Yesterday, 23:31

Sorry I cannot follow you…. Here I can find 1, 2 or 4 positions and the result is not
Connected on the one where nothing was found. I never discovered when you set abcd that it changes to ab and visa versa.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: AutoDiseqc issues #14 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Yesterday, 23:35

There must be a recent code change, that modifies the selected configuration depending on the scan results.

 

You can repoduce it. Set the config like in the attached screenshot and then select AutoDiseqc.

 

Attached File  before_scan_2sats.jpg   60.26KB   0 downloads


Edited by Stan, Yesterday, 23:42.


Re: AutoDiseqc issues #15 littlesat

  • PLi® Core member
  • 57,486 posts

+708
Excellent

Posted Today, 08:25

And what is the resulting screenshot….
I actually never liked that you could set auto individually and predefine some positions. Maybe it was always better to have just one option auto…. And when off you can set it individually. And when (afterwards) we have some positions show for where nothing was found nothing connected.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: AutoDiseqc issues #16 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Today, 09:53

Ok, so once again the screenshots:

 

Attached File  before_scan_2sats.jpg   60.26KB   0 downloads -> AutoScan -> Attached File  after_scan_2become1.jpg   36.35KB   0 downloads

 

It's actually a good thing, that you can repeat scanning for only certain sat positions that may have not been detected at first scan. But it should work right!

The semi-automatic logic that kicks in after the scan and changes the selected mode should be removed.



Re: AutoDiseqc issues #17 littlesat

  • PLi® Core member
  • 57,486 posts

+708
Excellent

Posted Today, 09:54

Issue is now confirmed and verified.
Sounds it limits to location where it find something only and not keep the ones you set manually before (it was never made for this).
Needs investigation.
Is at my todo list. First fix simplechannellist

Edited by littlesat, Today, 09:57.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: AutoDiseqc issues #18 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Today, 10:58

OK. If you have time for it, there's a second issue: If only some of the Ports are set to automatic, AutoScan will assign wrong satellites to them.

 

For example, my actual satellite setup is this: Attached File  4sats_correct.jpg   63.41KB   0 downloads I should always get this result after AutoDiseqc. (if it works right)

 

Instead, when scanning Ports C and D only, I get this:

Attached File  before_scan_4sats.jpg   70.53KB   0 downloads -> AutoDiseqc -> Attached File  scan_2from4.jpg   49.75KB   0 downloads -> Result -> Attached File  after_scan_4sats_2wrong.jpg   65.08KB   0 downloads

 

 



Re: AutoDiseqc issues #19 littlesat

  • PLi® Core member
  • 57,486 posts

+708
Excellent

Posted Today, 11:05

Yes…. You do something it was never made for…. And due to you can set it up like this, what you experience happens…  you find the ‘edges’ on something that is in there for >10 years or so and also in more images what nobody discovered…


Edited by littlesat, Today, 11:06.

WaveFrontier 28.2E | 23.5E | 19.2E | 16E | 13E | 10/9E | 7E | 5E | 1W | 4/5W | 15W


Re: AutoDiseqc issues #20 Stan

  • Senior Member
  • 488 posts

+5
Neutral

Posted Today, 11:20

Why am I always getting this attitude?

 

[..]  You do something it was never made for…. [...]

I am doing exactly what is was made for.

 

https://github.com/O...c808f8f79086e5b


Edited by Stan, Today, 11:24.



3 user(s) are reading this topic

0 members, 3 guests, 0 anonymous users