Ik heb intussen een mogelijke fix gepushed voor develop (nightly builds).....even wachten tot morgen en dan testen.
[frontend] add more tuners Gigablue snr/db
Posted 25 May 2021 - 05:23
Ik heb intussen een mogelijke fix gepushed voor develop (nightly builds).....even wachten tot morgen en dan testen.
[frontend] add more tuners Gigablue snr/db
GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K
Posted 25 May 2021 - 13:06
I've informed Tech.
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.
Posted 25 May 2021 - 17:58
And done
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
Posted 25 May 2021 - 20:37
En opgelost, de skin geeft nu in elk geval keurig de snr weer in db's of procenten.
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
Posted 25 May 2021 - 21:58
En opgelost, de skin geeft nu in elk geval keurig de snr weer in db's of procenten.
Helaas, nog steeds geen signaalsterkte weergave bij originele Pli-Skin en WEL bij Loui zijn Skin. !!!!!
Getest op een GigaBlue UE 4K met latest night (develop) van gisteren en vanmiddag (update dus).
Vanavond opnieuw ge-flashed met een verse Develop maar ook geen signaalsterkte te zien, wel met Loui zijn Skin !
Posted 26 May 2021 - 15:59
snr ook hier nu wel te zien hier in de standaard skin, mutant hd51 en gigablue ue 4k, laatste develop
Knap, de betreffende commits zijn van de 25e en laatste nightly/Develop tot op heden is van de 23e deze maand
de aanpassing op de 25e werkt bij mij dus al wel... is niet knap maar een feit
Edited by Wilmaas, 26 May 2021 - 15:59.
Posted 26 May 2021 - 17:56
Leuke melding, lees de bovenste "Revert" van gisterenmiddag (25e) ook effe. Laatste OpenPli Develop is echt nog van de 24e
Ik zie vooralsnog nog niks in standaard Pli-skin en het leuke is dat Loui zijn Skin de signaalsterkte al heel lang laat zien en dat zonder al die commits.
Posted 26 May 2021 - 19:01
Het leuke is dat de skin van Loui op een totaal andere manier de snr zichtbaar maakt, of dat in de toekomst zo 'leuk' blijft moet je nog maar afwachten, nu is het toevallig nog compatible.
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
Posted 26 May 2021 - 19:05
De commit staat overigens hier een aanpassing van twee dagen (de 24e) geleden.
Mijn eigen builds zijn gebaseerd op de develop van OpenPLi (clone) en daar werkt het wel, het is dus even wachten op de volgende succesvol gebouwde nightly build.
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
Posted 26 May 2021 - 19:19
Maybe...
https://github.com/l...c06d1b377935ef2
+
FrontendInfo.py
def getBool(self): assert self.type in (self.LOCK, self.BER, self.SNR, self.SNRdB, self.AGC, self.STRING, self.USE_TUNERS_STRING), "the boolean output of FrontendInfo can only be used for lock, BER, SNR, SNRdB, AGC, STRING, or USE_TUNERS_STRING" + swapsnr = config.usage.swap_snr_on_osd.value if self.type == self.LOCK: lock = self.source.lock if lock is None: lock = False return lock elif self.type == self.BER: return self.source.ber is not None + elif (self.type == self.SNR and not swapsnr) or (self.type == self.SNRdB and swapsnr): + return self.source.snr is not None + elif self.type == self.SNR or self.type == self.SNRdB: + return self.source.snr_db is not None or self.source.snr is not None - elif self.type == self.SNR: - return self.source.snr is not None - elif self.type == self.SNRdB: - return self.source.snr_db is not None elif self.type == self.AGC: return self.source.agc is not None elif self.type in (self.STRING, self.USE_TUNERS_STRING): return bool(self.getText())
Edited by Dimitrij, 26 May 2021 - 19:31.
GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K
Posted 26 May 2021 - 22:02
Er staat weer een build van vandaag.
Aan de rand van de afgrond is een stap voorwaarts niet altijd vooruitgang....
On the edge of the abyss, a step forward is not always progress....
Hardware: 2x Daily used Vu+ Ultimo 4K - Vu+ Duo 4K SE and a lot more.... - VisioSat BiBigsat - Jultec Unicable Multiswitch 4 positions: 19.2/23.5/28.2 East - Diseqc motorized flatdish antenna
Software : HomeBuild OpenPLi Develop and Scarthgap builds, local cards driven by OsCam
Press the button on the buttom right of this message
Have you tried our wiki yet? Many answers can be found in our OpenPLi wiki
0 members, 8 guests, 0 anonymous users