H9Twin

Marchella

Vu+ Newbie
Good afternoon dear developers!!! please look at the log what's wrong? box Zgemma H9 Twin, the image drops occasionally...
 

Attachments

  • Enigma2_crash_2023-04-28_09-24-57.zip
    3.8 KB · Views: 6

Ev0

Admin
@Ev0
What exactly do you need to show?
I only use Iptv, plugin e2m3u2bouquet_(Mod Dorik1972)
Ok, I would suggest to just reflash the box in that case.

It seems the box has got confused for some reason, and a file it is trying to close, doesn't actually exist.
 

Marchella

Vu+ Newbie
Okay, thank you...
I will try to install it again.

one question, is it possible to hope that for Zgemma H9 Twin/Combo there will be an update under the version openbh-5.2.007?
 

Ev0

Admin
Okay, thank you...
I will try to install it again.

one question, is it possible to hope that for Zgemma H9 Twin/Combo there will be an update under the version openbh-5.2.007?
At some point, but no idea when and the changes are not huge anyway
 

Marchella

Vu+ Newbie
I noticed a very unpleasant problem for me...

Zgemma H9 Twin, I use an external Wi-Fi adapter with a band of 5Ghz, in the information menu there is no data about the received and sent bytes.
1.jpg2.jpg
 

Ev0

Admin
I have a connection and the Internet is working.
There is no problem with this on OpenAtv and OpenPLi.

As said, we don't have the boxes or the wifi adaptors, so we can not help with this. (the community images are for you guys to fix any bugs and report what the fix is to us).

And one more thing... is there any way to fix this?

Tnx!:)
You will need to tweak the skin.xml code but not sure there is enough space
 

Marchella

Vu+ Newbie
You will need to tweak the skin.xml code but not sure there is enough space
already corrected...
6.jpg

please make corrections to the git
Code:
        <widget source="session.CurrentService" render="Label" position="1570,159" size="250,30" font="Regular;23" foregroundColor="#ffffff" backgroundColor="#21000000" halign="left" transparent="1">
            <convert type="VNetSpeedInfo">RC</convert>
        </widget>
        <widget source="session.CurrentService" render="Label" position="1570,159" size="250,30" font="Regular;23" foregroundColor="#ffffff" backgroundColor="#21000000" halign="right" transparent="1">
            <convert type="VNetSpeedInfo">TM</convert>
        </widget>
 

Marchella

Vu+ Newbie
It's strange, but my wlan1 works and displays all packets

Code:
root@zgemmah9twin:~# cat /proc/net/dev
Inter-|   Receive                                                |  Transmit
 face |bytes    packets errs drop fifo frame compressed multicast|bytes    packets errs drop fifo colls carrier compressed
 wlan0:       0       0    0    0    0     0          0         0        0       0    0    0    0     0       0          0
    lo:    1588      20    0    0    0     0          0         0     1588      20    0    0    0     0       0          0
  eth0:       0       0    0    0    0     0          0         0        0       0    0    0    0     0       0          0
 wlan1: 1931228564 1215145    0 60895    0     0          0         0 54471134  544981    0    1    0     0       0          0
root@zgemmah9twin:~#
 

Marchella

Vu+ Newbie
Dear developers, I ask you to make corrections...
Code:
        wlan1 = about.getIfConfig("wlan1")
        if "addr" in wlan1:
            self.AboutText += _("IP:") + "\t" + wlan1["addr"] + "\n"
            if "netmask" in wlan1:
                self.AboutText += _("Netmask:") + "\t" + wlan1["netmask"] + "\n"
            if "hwaddr" in wlan1:
                self.AboutText += _("MAC:") + "\t" + wlan1["hwaddr"] + "\n"
            self.iface = "wlan1"

and
Code:
                if self.iface == "wlan0" or self.iface == "wlan1" or self.iface == "ra0":

:thanks:
8.jpg
 

Ev0

Admin
Dear developers, I ask you to make corrections...
Code:
        wlan1 = about.getIfConfig("wlan1")
        if "addr" in wlan1:
            self.AboutText += _("IP:") + "\t" + wlan1["addr"] + "\n"
            if "netmask" in wlan1:
                self.AboutText += _("Netmask:") + "\t" + wlan1["netmask"] + "\n"
            if "hwaddr" in wlan1:
                self.AboutText += _("MAC:") + "\t" + wlan1["hwaddr"] + "\n"
            self.iface = "wlan1"

and
Code:
                if self.iface == "wlan0" or self.iface == "wlan1" or self.iface == "ra0":

:thanks:
You need to make pull requests on the git, not post bits of code here.
 
Top