H9Twin

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?
 
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
 
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
 
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
 
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>
 
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:~#
 
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
 
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.
 
Back
Top