Kodi Community Forum

Full Version: Auto Turn OFF Problem with Kodi 16.1 + Raspb.3 + Panasonic TV CEC
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Comunity,

I have a Problem with the following setup:

- Openelec with Kodi 16.1 is installed on my Raspberry Pi 3
- Kodi is controlled with a small Toshiba remote control + IR receiver installed at the IO Pins
- RPI3 is connected to my Panasonic TV with HDMI


Unfortunately everytime I switch of the TV, the Raspberry is also switched of and needs to be powered ON again by unplugin the Power Cable.

What I have done so far...

Pulse Eight CEC Adapter is disabled in the Confluence Settings, but everytime I press one of the TV`s Remote Keys the Raspberry is responding.
In the config.txt File I added the two commands (hdmi_ignore_cec_init=1 and hdmi_ignore_cec=1)

But both of this two steps didn`t stop my Pi from reacting to the TVs Remote Control Commands

As I don`t need CEC my question to you is if there is a safe way to complete uninstall all CEC functionalitys in Kodi ??

Looking forward for your help.Blush

Thank you
If you have "hdmi_ignore_cec=1" in config.txt then it won't be CEC that is causing the power off.
Are you sure the IR receiver isn't treating the power off and a shutdown command?

A debug log (wiki) may be useful.
(2016-12-19, 21:36)gohakn Wrote: [ -> ]But both of this two steps didn`t stop my Pi from reacting to the TVs Remote Control Commands

As I don`t need CEC my question to you is if there is a safe way to complete uninstall all CEC functionalitys in Kodi ??

Try a third step, disable CEC on your TV (Viera Link)
hello i have problem with my panasonic.when i browsing with firefox always on screen us showing new pop up web page.i cant remove i dont have X to turn of that page
hello i have problem with my panasonic.when i browsing with firefox always on screen us showing new pop up web page.i cant remove i dont have X to turn of that page
@ popcornmix

Shame on me Tongue

After writing this post I had the same Idea and tried to cover the Pi`s IR Receiver.

And everything is fine....Blush

It looks like the IR commands from Toshiba and Panasonic are similar and that causes the Problem.

So I will try to edit the Lircmap.xml

Code:
<lircmap>
    <remote device="devinput">
        <stop>KEY_STOP</stop>
        <print>KEY_RECORD</print>
        <pause>KEY_PAUSE</pause>
        <play>KEY_PLAY</play>
        <power>KEY_POWER</power>
        <reverse>KEY_REWIND</reverse>
        <forward>KEY_FASTFORWARD</forward>
        <skipminus>KEY_PREVIOUS</skipminus>
        <skipplus>KEY_NEXT</skipplus>
        <back>KEY_BACK</back>
        <info>KEY_INFO</info>
        <up>KEY_UP</up>
        <down>KEY_DOWN</down>
        <left>KEY_LEFT</left>
        <right>KEY_RIGHT</right>
        <select>KEY_OK</select>
        <volumeplus>KEY_VOLUMEUP</volumeplus>
        <volumeminus>KEY_VOLUMEDOWN</volumeminus>
        <enter>KEY_HOME</enter>
        <pageplus>KEY_CHANNELUP</pageplus>
        <pageminus>KEY_CHANNELDOWN</pageminus>
        <mute>KEY_MUTE</mute>
        <pageplus>KEY_1</pageplus>
        <pageminus>KEY_2</pageminus>
        <livetv>KEY_TV</livetv>
        <title>KEY_DVD</title>            
    </remote>
</lircmap>

Is it enough to edit the <power> entry??
(2016-12-20, 00:53)gohakn Wrote: [ -> ]Is it enough to edit the <power> entry??

I would image so. I'd try:
Code:
<power>noop</power>
I tried your Tip with "<power>noop</power>" today but it didnĀ“t work.

The Pi was although turning OFF when pushing the TV Remote`s Power Button.



SSH to the PI and start recording a new lircd.conf File brougt the success.

After mapping the PI`s RC-Buttons again everything works Fine now.

Thank you for your help.