Re: Samsung TV's
Posted: Sat May 10, 2014 4:35 pm
I have a PN60E530A3FXZA with EX-Link. When I turn on my set using the remote, I get an "f8" message from the TV in EG. I've modified this plugin to return an event instead of just a message when it receives things from EX-Link.
Just change line 268 from "print b" to "self.TriggerEvent(b)" .
Just change line 268 from "print b" to "self.TriggerEvent(b)" .
Code: Select all
def OnReceive(self, serial):
buffer = ""
while True:
b = serial.Read(1, 0.1)
b = binascii.hexlify(b)
if b == '':
return
self.TriggerEvent(b)