Channel selection TP display
vegastech
Posts: 369
I have noticed a channel selection text display on several of the TP files that I have downloaded. I understand that with the IP/232 control over some of the Satellite receivers, the text field can be propagated with the current channel. I was wondering, is there a way to propagate that field with the channel numbers as they are entered, and then upon an Enter button selection, the entire string (in this case, channel 501 for example) can be sent? I was thinking about how clients of mine have a hard time using touchscreen numerics, because they are constantly looking between the TP and the screen, to be sure they entered the correct digit. I'm thinking that perhaps an integer array of 3 fields, assuming a maximum 3 digit channel entry, would be able to handle this.
0
Comments
I ran into this. It gets a little dicey when a DVR is involved and the client needs to enter in a couple numbers from the keypad or whatnot.
What I do is create a favorites page with about 50 or so buttons. They can be set by the user but come prepopulated with some common selections. Each button gets a number stored to it and/or a graphic for the channel/network. To set they type a number and press-n-hold. That way I know for a fact they are typing in a channel number.
This will assign the array as they enter it and update the text field you have for it. I store it as a CHAR arrary, makes it easier when updating the touchpanel.
You will need a clear button:
Then an enter button when you are done.
However you do it, you will want to use the SP command (stacked pulse) rather then pulse. Each pulse will override the last, the SP command wait until the last one is finished before sending the next. You could also use an XCM command with the CHAR array if you wanted to.
Kevin D.
This way you have txt on the touch panel. The number dials if you wait 3 seconds or press 3 digits. The beauty is using an array of txt numbers to dial presets. Like presets[] = {'123',254','326')
PM me if you have any specific questions.