NextPVR Forums
  • ______
  • Home
  • New Posts
  • Wiki
  • Members
  • Help
  • Search
  • Register
  • Login
  • Home
  • Wiki
  • Members
  • Help
  • Search
NextPVR Forums Public Developers v
« Previous 1 … 19 20 21 22 23 … 93 Next »
beta net2hipsend

 
  • 0 Vote(s) - 0 Average
beta net2hipsend
baze256
Offline

Junior Member

Posts: 21
Threads: 4
Joined: Dec 2006
#51
2009-12-09, 11:54 AM
I can change channels using ComController but I can't send command line commands such as "zir 5-2" which does do a channel change properly.
Using DirecTV.exe I can send the same command properly but it precedes it by FA AA 06 which messes up my STB.
-------------------------------------------------------------
Port opened by process "ComController.exe" (PID: 3332)

0D 7A 69 72 20 35 2D 32 0D .zir 5-2.

Port closed
-------------------------------------------------------------
Port opened by process "DIRECTV.EXE" (PID: 520)

FA AA 06 7A 69 72 20 35 00 0D úª.zir 5..

Port closed
-------------------------------------------------------------
Using ComController it changes channel properly; using DirecTV, it doesn't because of the extra characters sent before the "ZIR 5" command.

1) Is there a way to send commands to com-controller directly?

2) How can I block the 3 extra characters sent by DirecTV?
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#52
2009-12-10, 05:56 PM (This post was last modified: 2009-12-10, 07:01 PM by pBS.)
did you look in com controller help file where i mentioned? it has the post codes needed to send keys to it in background...just like i send to gbpvr...
so in hip, a blast digit would be like {!1, 52, 0} at least that's what i gather from the help file...tho i don't see how those can be sent from ir definitions, must be setup using a regular keymapping i guess..

or just a regular post command: POST(1224,5,0)
[HIP is 1225]
i'm thinking just add a value '0' and hit 'post' for command, set 1224 as 'message' and your command as next number at bottom and that's it..maybe just 0 for second number..

oh and i just saw ccsend.exe in that package...it sends commands to com controller directly without hip..Big Grin
i think you can only send one # at a time with that so you'll need a batch file to split up the numbers into single digits..
[i can help you with that if needed, made one already..]
Code:
@echo off
echo Changing channels 1 number at a time..
if "%1" == "" echo No channel given! && goto :eof
set ch=%1
:: replace 'echo' below with your changer program .exe
ccsend.exe 00%ch:~0,1%
ccsend.exe 00%ch:~1,1%
ccsend.exe 00%ch:~2,1%
this batch file can be placed as .exe channel changer in config..Smile

in CCC you'll want to have only digits 0-9 setup as labels 000-009 so you can blast them easily..
[so sending '124' to batch file executes ccsend 001 then ccsend 002 then ccsend 004,
activating codes for labels 001, 002 and 004 in ccc]
post your .ccc file and i can give more help..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
dvasco
Offline

Senior Member

Posts: 718
Threads: 113
Joined: Jun 2006
#53
2009-12-18, 01:45 PM
PBS, can you make a Net2hipsend entry in Wiki? I would like to point the following pages to it -
http://gbpvr.com/pmwiki/pmwiki.php/Hardw...nelChanger
http://gbpvr.com/pmwiki/pmwiki.php/Confi...nelChanger
http://gbpvr.com/pmwiki/pmwiki.php/Tips/...rdware.HIP

Thanks
[SIZE="1"] [COLOR="Blue"]
NPVR | Athlon XP 5000+ 2 GB RAM | Asus EAH3450 | Hauppauge HVR-1600 & Colossus | MS MCE Beanbag
Harmony 659 | RF keyboard | Vizio 42" LCD & Panasonic 32" CRT | 3 PCH A-100 [/COLOR][/SIZE]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#54
2009-12-18, 07:40 PM
i've been meaning to put up a whole new hip page as i have preset files to use to make it really easy,under 5 minutes to setup hip with mce remote and blasters..
i gave the new pvrx2 preset file to the hip guy to include in next version,tho who knows when that'll be..[gave it to him months ago]

you can point them to this thread,first post for now if you want..i'll just be copying most of it over anyways...Smile

i'll see if i can't get it done this weekend..
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
dvasco
Offline

Senior Member

Posts: 718
Threads: 113
Joined: Jun 2006
#55
2009-12-18, 07:46 PM
I had already pointed a couple of those Wiki entries to this thread. I'll update them once the Wiki entry is made. Thanks again for everything.
[SIZE="1"] [COLOR="Blue"]
NPVR | Athlon XP 5000+ 2 GB RAM | Asus EAH3450 | Hauppauge HVR-1600 & Colossus | MS MCE Beanbag
Harmony 659 | RF keyboard | Vizio 42" LCD & Panasonic 32" CRT | 3 PCH A-100 [/COLOR][/SIZE]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#56
2009-12-18, 07:52 PM
no prob. sharing the knowledge is why it works, and don't cost a thing..
so much marketing fluff on the web, takes real people to whittle it down to the relevant real info...
saves tons of time and confusion..Smile

umm,been a while, how do i make a new page on wiki?
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#57
2009-12-18, 08:01 PM
looking at wiki there are old files already on there that need to be replaced, they still point to gbpvr.exe as executable...i have replacements...
from here:
http://gbpvr.com/pmwiki/pmwiki.php/Hardw...onfigs.zip
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#58
2009-12-18, 08:29 PM (This post was last modified: 2009-12-18, 08:42 PM by pBS.)
all fixed...uploaded and replaced outdated ones...now they should work at least..

yea, i'm gonna have to make a new page...the instructions there aren't even correct..
it's all presetup...
mine leverages the preset files to make it more universal..
and i have the repeat fix to add...

p.s. found out how to add wiki page so n/m...Smile

and that info isn't quite correct, net2hipsend can be used with *any* blaster within HIP..
setup is same for all...
and same can be said for hipsend...
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
dvasco
Offline

Senior Member

Posts: 718
Threads: 113
Joined: Jun 2006
#59
2009-12-18, 08:44 PM
pBS Wrote:no prob. sharing the knowledge is why it works, and don't cost a thing..
so much marketing fluff on the web, takes real people to whittle it down to the relevant real info...
saves tons of time and confusion..Smile

I agree

pBS Wrote:umm,been a while, how do i make a new page on wiki?
I started the page after all, it just needs to be completed now. http://gbpvr.com/pmwiki/pmwiki.php/Tips/Net2hipsend

pBS Wrote:looking at wiki there are old files already on there that need to be replaced, they still point to gbpvr.exe as executable...i have replacements...
from here:
http://gbpvr.com/pmwiki/pmwiki.php/Hardw...onfigs.zip

Where should those files be posted? I haven't learned to upload to the Wiki yet.
[SIZE="1"] [COLOR="Blue"]
NPVR | Athlon XP 5000+ 2 GB RAM | Asus EAH3450 | Hauppauge HVR-1600 & Colossus | MS MCE Beanbag
Harmony 659 | RF keyboard | Vizio 42" LCD & Panasonic 32" CRT | 3 PCH A-100 [/COLOR][/SIZE]
pBS
Offline

Posting Freak

Posts: 4,829
Threads: 182
Joined: Aug 2005
#60
2009-12-18, 08:51 PM
upload is easy if there's a link already, just click the little red triangle next to the download and it will take you to upload section..
for new links just put attach:filename.ext on page
then view page and hit the red triangle there to upload
or load the page with "?action=upload" at end of url to upload directly..
then link with the attach:file.ext
Hardware: HDHR Prime, HDPVR 1212, Raspberry pi2, VFD display w/LCDSmartie
« Next Oldest | Next Newest »

Users browsing this thread: 1 Guest(s)

Pages (15): « Previous 1 … 4 5 6 7 8 … 15 Next »
Jump to page 


Possibly Related Threads…
Thread Author Replies Views Last Post
  Video Library Archive addon beta pBS 2 1,763 2006-12-14, 07:37 PM
Last Post: pBS
  Gmail plugin - Beta test Thread McBainUK 39 12,406 2006-08-28, 03:25 AM
Last Post: skippy_nz
  Screen saver plugin - Beta testers required McBainUK 33 10,193 2006-06-28, 05:36 PM
Last Post: MixMan
  My Music 3 Beta (DB Version) reven 136 35,104 2005-12-20, 07:57 PM
Last Post: bluesxman
  My Pictures 3.0.1 beta fix reven 29 8,498 2005-11-11, 07:15 PM
Last Post: deepak
  My Music 3 Beta reven 75 17,246 2005-10-17, 06:49 PM
Last Post: reven
  My Pictures 3 beta reven 47 12,470 2005-10-11, 01:31 AM
Last Post: reven

  • View a Printable Version
  • Subscribe to this thread
Forum Jump:

© Designed by D&D, modified by NextPVR - Powered by MyBB

Linear Mode
Threaded Mode