HDMI-CEC problems
Re: HDMI-CEC problems #21
Re: HDMI-CEC problems #22
Posted 15 November 2012 - 13:16
Re: HDMI-CEC problems #23
Posted 15 November 2012 - 19:24
@ims
I have also similar problem with DM500 HD and my Panasonic TV.
Is there a way that i can try your solution with your updated HdmiCec.py ?
Or where can i find the original HdmiCec.py, so i can change it myself.
thanks
bastock
unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma and let me know, if it helps ...
Attached Files
Re: HDMI-CEC problems #24
Posted 16 November 2012 - 13:18
@ims
I have also similar problem with DM500 HD and my Panasonic TV.
Is there a way that i can try your solution with your updated HdmiCec.py ?
Or where can i find the original HdmiCec.py, so i can change it myself.
thanks
bastock
unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma and let me know, if it helps ...
I have the same set up DM500HD with panasonic TV.
The file in the suggested directory is HdmiCec.pyo. I have rewrite it with yours and when I restarted the dreambox it never booted succesfully.
Re: HDMI-CEC problems #25
Posted 16 November 2012 - 14:21
The manual way of getting to HdmiCec.py is download it from our repository
In other words:
cd /usr/lib/enigma2/python/Components wget "http://openpli.git.sourceforge.net/git/gitweb.cgi?p=openpli/enigma2;a=blob_plain;f=lib/python/Components/HdmiCec.py;hb=HEAD" -O HdmiCec.pyI don't know for sure, but do note that your changes will probably be overwritten on the next update. So keep a copy somewhere safe.
Re: HDMI-CEC problems #26
Posted 16 November 2012 - 14:26
The file in the suggested directory is HdmiCec.pyo. I have rewrite it with yours and when I restarted the dreambox it never booted succesfully.
But I wrote nothing about .pyo file. I wrote: "unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma and let me know, if it helps ..."
Now you must place this .py file (via telnet/putty/totalcommander...) to directory ( as .py !!!) again and turn off/on box. Will be recompiled new true .pyo and enigma will start well.
Edited by ims, 16 November 2012 - 14:29.
Re: HDMI-CEC problems #27
Posted 16 November 2012 - 17:10
The file in the suggested directory is HdmiCec.pyo. I have rewrite it with yours and when I restarted the dreambox it never booted succesfully.
But I wrote nothing about .pyo file. I wrote: "unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma and let me know, if it helps ..."
Now you must place this .py file (via telnet/putty/totalcommander...) to directory ( as .py !!!) again and turn off/on box. Will be recompiled new true .pyo and enigma will start well.
Thanks for the explanation. I did exactly what you told me but I have the same behaviour as before. When I hit the power button of my dreambox rmote TV turns on, dreambox turns on but Tv stays at tuner and does not switch to HDMI.
Re: HDMI-CEC problems #28
Posted 17 November 2012 - 19:50
I had similar problem on my Philips and DM800SE ... when on TV was DVB-T and was wake-up dream, then TV did not switch to HDMI1 too ( but was displayed name of dream on TV).
I think, there must be some delay between commands ... added time.delay(0.1) in HdmiCec.py and it seems, it works for me now well.import time ... eHdmiCEC.getInstance().sendMessage(address, cmd, data, len(data)) time.sleep(0.1)
I had issues with my setup VU+ Ultimo -> Samsung ht-e5500(BD receiver) -> Samsung ue55d7005 tv.
The problem was when wake up from standby the tv woke up direct and receiver woke up 20-30 sec later.
This solution with time.delay(0.1) solved my problem with receiver startup delay, and now everything starts instant.
I think ims solution is safe to add to Pli-source as this tiny delay probably won't break things for others.
So please add it
Edited by Yada, 17 November 2012 - 19:52.
Re: HDMI-CEC problems #29
Posted 17 November 2012 - 23:40
Thanks for the explanation. I did exactly what you told me but I have the same behaviour as before. When I hit the power button of my dreambox rmote TV turns on, dreambox turns on but Tv stays at tuner and does not switch to HDMI.
try this version...
(unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma...)
Attached Files
Re: HDMI-CEC problems #30
Re: HDMI-CEC problems #31
Re: HDMI-CEC problems #32
Posted 18 November 2012 - 08:45
if a sleep is needed, we should use a different aproach; push all messages up a queue, fire a timer at a 100ms interval, and pop 1 message at a time.
Sounds like a good idea, or fire the timer after silence on the bus (incoming and outgoing msg) is perhaps better?
Seems that some devices could be picky about "signal free time" in CEC_Specs.pdf
Re: HDMI-CEC problems #33
Posted 18 November 2012 - 21:26
unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma and let me know, if it helps ...
Thanks ims,
I placed the file into the ../components dir.
I restart the device, and i can see that the file HdmiCec.py is compiled to .pyo
But i still have the same problems....
- my tv doesn't start when i power on my DM 500 HD
Re: HDMI-CEC problems #34
Posted 19 November 2012 - 11:35
Thanks for the explanation. I did exactly what you told me but I have the same behaviour as before. When I hit the power button of my dreambox rmote TV turns on, dreambox turns on but Tv stays at tuner and does not switch to HDMI.
try this version...
(unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma...)
Same behavior here.
The dreambox turned on succesfully the same the TV. But the TV does not switch to the HDMI.
I believe that the problem lies to the fact that the dreambox turns on instanteneously but the TV in a while. So, when the TV is turned on the dreambox is already on so there is no need for the TV to switch to the HDMI.
In order for that to work a delay needs to be added of when the dreambox should turn on. So, if for example a delay of 500ms is added the TV should turn first and after 500ms the dreambox will turn on. This will give time to the TV to be turned on first.
Re: HDMI-CEC problems #35
Posted 19 November 2012 - 12:21
unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma and let me know, if it helps ...
Thanks ims,
I placed the file into the ../components dir.
I restart the device, and i can see that the file HdmiCec.py is compiled to .pyo
But i still have the same problems....
- my tv doesn't start when i power on my DM 500 HD
Your TV doesn't wake-up or do not switch to true input after wake-up ?
Re: HDMI-CEC problems #36
Posted 19 November 2012 - 12:34
Thanks for the explanation. I did exactly what you told me but I have the same behaviour as before. When I hit the power button of my dreambox rmote TV turns on, dreambox turns on but Tv stays at tuner and does not switch to HDMI.
try this version...
(unzip it and place it to directory /usr/lib/enigma2/python/Components. Then restart enigma...)
Same behavior here.
The dreambox turned on succesfully the same the TV. But the TV does not switch to the HDMI.
I believe that the problem lies to the fact that the dreambox turns on instanteneously but the TV in a while. So, when the TV is turned on the dreambox is already on so there is no need for the TV to switch to the HDMI.
In order for that to work a delay needs to be added of when the dreambox should turn on. So, if for example a delay of 500ms is added the TV should turn first and after 500ms the dreambox will turn on. This will give time to the TV to be turned on first.
I tried sending sequences for switch to wanted input manualy (when was TV in DVB-T) with same effect...
When TV "want not" , is "not power" switch to wanted input from DVB-T. In time, when TV has "own head", TV is black, but on screen is displayed devicename from wanted input and is not possible switch it then with TV's RC too. Then must go both to standby and next wake-up make it well.
But are days, when all works well.
I think, there must be some missing or move...
Re: HDMI-CEC problems #37
Re: HDMI-CEC problems #38
Posted 20 November 2012 - 21:52
Try this version...
sorry, it still doesn't wakeup my tv
These are my results so far.
What works;
- Put TV in standby
- Handle standby from TV
- Handle wakeup from TV
What doesn't work;
- Wakeup TV from standby
- Forward volume keys
- Switch TV to correct input
My config for the moment is as follows;
My TV 'Pana TH46PZ85E' is configured as 'Hotel mode' and start always on 'HDMI1'
I set my DM Remote in 'TV' mode and wakeup the TV.
Now my DM500HD wakeup also.
Then i change my DM Remote to 'Dream' mode....
When i power off my DM500HD my TV also goes in standby mode.
This is my best solution so far...
Re: HDMI-CEC problems #39
Re: HDMI-CEC problems #40
13 user(s) are reading this topic
0 members, 13 guests, 0 anonymous users