Jump to content


Photo

Signal meter (bar) enigma2

General Enigma2

  • Please log in to reply
12 replies to this topic

#1 bogyman

  • Senior Member
  • 80 posts

0
Neutral

Posted 21 October 2011 - 11:26

hello

on all non linux HD and SD stbs , when access Tuner config then when can see Signal meter :-
is it possible to add it to enigma
its very anoying to to config sat then goto satfinder and check if setting are correct

Posted Image

Posted Image

while on enigma2

Posted Image

Re: Signal meter (bar) enigma2 #2 Kosh

  • Senior Member
  • 430 posts

+5
Neutral

Posted 21 October 2011 - 13:29

I see this data inside my skin: "Magic-(E)HD" and even more details when I push Ok for additional info inside "Second Infobar".

ET10K user i.c.w. Samsung UE40B6000 LED HDTV. ET9K alas not functioning anymore.


Re: Signal meter (bar) enigma2 #3 littlesat

  • PLi® Core member
  • 56,263 posts

+691
Excellent

Posted 21 October 2011 - 13:30

I think he means you directly see them when setting up the transponder parameters, before you start to scan...

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


Re: Signal meter (bar) enigma2 #4 hemertje

  • Forum Moderator
    PLi® Core member
  • 33,470 posts

+118
Excellent

Posted 21 October 2011 - 18:11

never used it as my dish is set correctly

on the Glassfibre 1GB DVB-C...


Re: Signal meter (bar) enigma2 #5 theparasol

  • Senior Member
  • 4,157 posts

+198
Excellent

Posted 21 October 2011 - 18:12

Would be very handy if you want / need to finetune your dish. Not everyone has a rocky steady dish installation

@Camping: ZGemma H.2S, Technisat Multytenne 4-in-1 @Home: Edision Mini 4K, Wave Frontier T55, EMP Centauri EMP DiSEqC 8/1 switch, 4x Inverto Ultra Black single LNB


Re: Signal meter (bar) enigma2 #6 hemertje

  • Forum Moderator
    PLi® Core member
  • 33,470 posts

+118
Excellent

Posted 21 October 2011 - 18:15

there are differences between the tuners of the different boxtypes
so if you use for example a ET9000 to finetune it you will get others results when you use a DM800SE

on the Glassfibre 1GB DVB-C...


Re: Signal meter (bar) enigma2 #7 korsan

  • Senior Member
  • 404 posts

+5
Neutral

Posted 21 October 2011 - 20:01

@bogyman
Is this something usefull for you?
it's the Glass System Utility plugin
Posted Image

Edited by korsan, 21 October 2011 - 20:01.

H9.Twin  :::  H9.2H :::  H9.S ::: HD1265 ::: H2H :::::::::: WaveFrontier T90: 1W, 3, 7, 13, 16, 19, 23, 28, 42E ::::::::::


Re: Signal meter (bar) enigma2 #8 hemispherical1

  • Senior Member
  • 1,596 posts

+49
Good

Posted 21 October 2011 - 20:04

I think what you want could simply be added to your skin, in the "reception settings" screen section. The required info could be extracted from the satfinder section of the skin_default.xml:

<screen name="Satfinder" position="center,center" size="520,400" title="Satfinder">
<widget name="introduction" position="0,0" size="0,0" font="Regular;23" />
<ePixmap pixmap="skin_default/icons/dish_scan.png" position="5,25" zPosition="0" size="119,110" transparent="1" alphatest="on" />
<widget source="Frontend" render="Label" position="190,10" zPosition="2" size="260,20" font="Regular;19" halign="center" valign="center" tran
sparent="1">
<convert type="FrontendInfo">SNRdB</convert>
</widget>
<eLabel name="snr" text="SNR:" position="120,35" size="60,22" font="Regular;21" halign="right" transparent="1" />
<widget source="Frontend" render="Progress" position="190,35" size="260,20" pixmap="skin_default/bar_snr.png" borderWidth="2" borderColor="#c
ccccc">
<convert type="FrontendInfo">SNR</convert>
</widget>
<widget source="Frontend" render="Label" position="460,35" size="60,22" font="Regular;21">
<convert type="FrontendInfo">SNR</convert>
</widget>
<eLabel name="ber" text="BER:" position="120,60" size="60,22" font="Regular;21" halign="right" transparent="1" />
<widget source="Frontend" render="Progress" position="190,60" size="260,20" pixmap="skin_default/bar_ber.png" borderWidth="2" borderColor="#c
ccccc">
<convert type="FrontendInfo">BER</convert>
</widget>
<widget source="Frontend" render="Label" position="460,60" size="60,22" font="Regular;21">
<convert type="FrontendInfo">BER</convert>
</widget>
<eLabel name="lock" text="Lock:" position="120,115" size="60,22" font="Regular;21" halign="right" />
<widget source="Frontend" render="Pixmap" pixmap="skin_default/icons/lock_on.png" position="190,110" zPosition="1" size="38,31" alphatest="on
">
<convert type="FrontendInfo">LOCK</convert>
<convert type="ConditionalShowHide" />
</widget>
<widget source="Frontend" render="Pixmap" pixmap="skin_default/icons/lock_off.png" position="190,110" zPosition="1" size="38,31" alphatest="o
n">
<convert type="FrontendInfo">LOCK</convert>
<convert type="ConditionalShowHide">Invert</convert>
</widget>
<ePixmap pixmap="skin_default/div-h.png" position="10,152" zPosition="1" size="500,2" />
<widget name="config" position="10,165" size="500,225" scrollbarMode="showOnDemand" />
</screen>

The example above certainly wouldn't look good using the positioning from the satfinder screen in the tuner config section, but it is a starting point to figure out what needs to be placed, you can decide where. Hint: you'll need correct paths pointing to your png (graphic files), skin_default/bar_ber.png would only be valid if your skin.xml resided in /usr/share/enigma2, which is unlikely...

I don't know if anyone would have any interest in doing this for you, but it would be a good project for you as you are the one that wants the feature... ;)


Good luck,
--
hemi

Ps. Many/most learn these type of things through trial & error. It may take you 30 tries to get it laid out how you like, but you'll probably also learn some other cool things along the way...

Edited by hemispherical1, 21 October 2011 - 20:18.


Re: Signal meter (bar) enigma2 #9 Erik Slagter

  • PLi® Core member
  • 46,951 posts

+541
Excellent

Posted 21 October 2011 - 21:05

Or install sherlock...

* Wavefrontier T90 with 28E/23E/19E/13E via SCR switches 2 x 2 x 6 user bands
I don't read PM -> if you have something to ask or to report, do it in the forum so others can benefit. I don't take freelance jobs.
Ik lees geen PM -> als je iets te vragen of te melden hebt, doe het op het forum, zodat anderen er ook wat aan hebben.


Re: Signal meter (bar) enigma2 #10 bogyman

  • Senior Member
  • 80 posts

0
Neutral

Posted 21 October 2011 - 21:12

hi all
sherlock or any other tool/plugin is irrelevant
hemispherical1 idea seems fine
my point is to see real time tuner data when configuring sats or diseqc ports

Re: Signal meter (bar) enigma2 #11 littlesat

  • PLi® Core member
  • 56,263 posts

+691
Excellent

Posted 21 October 2011 - 22:47

SecondInfobar + Magic Skin HD and 2x OK!!!

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


Re: Signal meter (bar) enigma2 #12 hemispherical1

  • Senior Member
  • 1,596 posts

+49
Good

Posted 21 October 2011 - 23:39

SecondInfobar + Magic Skin HD and 2x OK!!!

Somehow adds strength meters to the Reception Settings screen? ;)


--
hemi

Edited by hemispherical1, 21 October 2011 - 23:40.


Re: Signal meter (bar) enigma2 #13 littlesat

  • PLi® Core member
  • 56,263 posts

+691
Excellent

Posted 22 October 2011 - 08:49

No, not on that screen... but for adjust my dish I have one bouquet with for each satellite one FTA TV channel...

It is complicated the way how enigma2 is build now. At each change on that screen you need to retune to do that properly. This will be a lot extra decoding and also probably recoding...

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



0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users