echo 0 > /proc/stb/fp/led0_pattern
echo 0 > /proc/stb/fp/led1_pattern
echo 0 > /proc/stb/fp/oled_brightness
Posted 24 February 2022 - 08:36
Posted 24 February 2022 - 12:27
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 24 February 2022 - 21:34
Might be added after the 8.1 release, I only run nightly builds on all my boxes.
In which case you either need to switch to a nightly build, or wait for 8.2-release, which is not too long away.
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 February 2022 - 06:46
GigaBlue UHD Quad 4K /Lunix3-4K/Duo 4K
Posted 25 February 2022 - 07:16
Might be added after the 8.1 release, I only run nightly builds on all my boxes.
In which case you either need to switch to a nightly build, or wait for 8.2-release, which is not too long away.
Test with nightly build,, test build and openpli 7.3 : Just Brightness and Standby
Posted 25 February 2022 - 13:10
Then it might need fixing.
Just to double check, as I don't have a box handy, you do have:
ls -l /proc/stb/fp | grep led -rw-r--r-- 1 root root 0 Feb 25 12:09 ledpowercolor -rw-r--r-- 1 root root 0 Feb 25 12:09 ledstandbycolor -rw-r--r-- 1 root root 0 Feb 25 12:09 ledsuspendledcolor
?
I assume not, which means it is a driver issue. If these options are present in ATV, Gigablue has to update the BSP with the new drivers.
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 February 2022 - 17:06
Then it might need fixing.
Just to double check, as I don't have a box handy, you do have:
ls -l /proc/stb/fp | grep led -rw-r--r-- 1 root root 0 Feb 25 12:09 ledpowercolor -rw-r--r-- 1 root root 0 Feb 25 12:09 ledstandbycolor -rw-r--r-- 1 root root 0 Feb 25 12:09 ledsuspendledcolor?
I assume not, which means it is a driver issue. If these options are present in ATV, Gigablue has to update the BSP with the new drivers.
Just one line
-rw-r--r-- 1 root root 0 Feb 25 17:01 oled_brightness
Posted 25 February 2022 - 17:11
-rw-r--r-- 1 root root 0 Feb 25 17:01 oled_brightness
Just one line
Thought so. So work for gigablue...
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 28 February 2022 - 21:12
I have a Ultimo 4K in bedroom with the same issue it was to bright in standby so I change the color for the clock to dark red (maybe I added that color in the xml file) then the date to black and name it to /usr/share/enigma2/display/skin_default/skin_display_night.xml, and copy the original file and named it skin_display_day.xml
The I associated the script to hotkeys (long red). Then I just change color of the front display when I like by pressing red button long
#!/bin/bash mode=$(cat mode.txt) #Check mode if [ "$mode" != "nightmode" ]; then #Copy nightskin echo nightmode>mode.txt cp /usr/share/enigma2/display/skin_default/skin_display_night.xml /usr/share/enigma2/display/skin_default/skin_display.xml else #Copy nightskin to mode.txt echo daymode>mode.txt # Copy dayskin cp /usr/share/enigma2/display/skin_default/skin_display_day.xml /usr/share/enigma2/display/skin_default/skin_display.xml fi #Restart enigma, go to standby wget -O /dev/null -q http://127.0.0.1/web/powerstate?newstate=3 sleep 8 wget -O /dev/null -q http://127.0.0.1/web/powerstate?newstate=0
sleep 8 = 8 sec works with my Ultimo maybe you need to change it ???
P.S Add this at the top of the script if you like to make sure you can't restart enigma when you made a recording.
if [ $(wget -O- -q http://localhost/web/timerlist | grep "<e2state>2</e2state>" | grep -cm 1 "2") = 1 ] ; then echo -e "\nRecording !! ...\n" exit fi
Posted 6 March 2022 - 18:15
I have a Ultimo 4K in bedroom with the same issue it was to bright in standby so I change the color for the clock to dark red (maybe I added that color in the xml file) then the date to black and name it to /usr/share/enigma2/display/skin_default/skin_display_night.xml, and copy the original file and named it skin_display_day.xml
The I associated the script to hotkeys (long red). Then I just change color of the front display when I like by pressing red button long
#!/bin/bash mode=$(cat mode.txt) #Check mode if [ "$mode" != "nightmode" ]; then #Copy nightskin echo nightmode>mode.txt cp /usr/share/enigma2/display/skin_default/skin_display_night.xml /usr/share/enigma2/display/skin_default/skin_display.xml else #Copy nightskin to mode.txt echo daymode>mode.txt # Copy dayskin cp /usr/share/enigma2/display/skin_default/skin_display_day.xml /usr/share/enigma2/display/skin_default/skin_display.xml fi #Restart enigma, go to standby wget -O /dev/null -q http://127.0.0.1/web/powerstate?newstate=3 sleep 8 wget -O /dev/null -q http://127.0.0.1/web/powerstate?newstate=0sleep 8 = 8 sec works with my Ultimo maybe you need to change it ???
P.S Add this at the top of the script if you like to make sure you can't restart enigma when you made a recording.
if [ $(wget -O- -q http://localhost/web/timerlist | grep "<e2state>2</e2state>" | grep -cm 1 "2") = 1 ] ; then echo -e "\nRecording !! ...\n" exit fi
no color on the trio clock just the ability to dim the brightness
Aufnahme abgebrochenStarted by MickeyMouse1, 12 Jun 2024 Gigablue Trio 4K |
|
0 members, 1 guests, 0 anonymous users