I am using the python script:
Code: Select all
event = eg.event.string
parts = event.split(".")
if len(parts) == 3 and parts[-2] == 'CH':
device = parts[-2]
channel = parts[-1]
print device
if channel.isdigit():
channel = channel.zfill(1)
for digit in channel:
eg.TriggerEvent(digit,prefix=device)
It appears to be sending the remote codes, however not fast enough to get the whole thing in before the channel changes?
On a strange note, when I take my time typing in the channel with the buttons, time does not seem to be a factor, or I would not be posting this.
Does anyone have any sugestions?
Here is an image of my setup:

Thank you very much!
- MiLO83
IMPORTANT EDIT: With further testing the above code only works if input a doubled last digit! So EX= 2355=235, 2477=247! it is skipping the 3rd digit for some reason!
Can anyone help fix this?
Thanks again!
- MiLO83