DSS not recognizing channels
playskool1
Posts: 64
DirectTV is being controlled. On my channel keypad I am able to enter single digit channels, double digit channels and triple digit channels. The only problem is that when entering a triple digit channel and the 2nd digit is the same as the 3rd, it will only send it as a double digit channel.
For example: Channel 123 will work flawlessly and Channel 456 will work flawlessly. Now if you enter channel 122, it will send it as Channel 12. Or if you type in Channel 555 it will send it as Channel 55. Has anybody ran into this issue before?
For example: Channel 123 will work flawlessly and Channel 456 will work flawlessly. Now if you enter channel 122, it will send it as Channel 12. Or if you type in Channel 555 it will send it as Channel 55. Has anybody ran into this issue before?
0
Comments
okay this is what i have:
how much higher should i set the pulse time?
Based on your code, the easiest thing to do would be to change from a PULSE to a TO. This way it would operate just like a handheld remote - as the button is held the IR is emitted. People are very familiar with the timing necessary to operate devices via IR.
If you do change to TO you don't need to change the pulse times, as that is for (obviously) pulses. In my last post I was referring to the time between pulses, not the actual pulse itself. SET_PULSE_TIME would not help you with the time between pulses.
If for some reason you don't want to do a TO, you would want to send a stacked pulse this way the user could press three digits and the code would pulse them in order.
You want instead to use the CTON and CTOF send_commands to the IR port. Then, instead of using PULSE (which ignores those values), use the SP send_command to send the IR instead. Check AMX PI for the correct syntax; I'm so much in the habit of just cutting and pasting from project to project, I can never quite remember it exactly, and wind up looking it up myself if I don't have something to copy at hand. These methods allow you to set different values for different devices; I've especially noticed that fiddling with the off time scrambles some devices, so you most definitely don't want to adjust that for any device that doesn't specifically need it.