Ceton infiniTV 4 Temperature Monitor

Ask fellow members about Ceton's infiniTV tuners here.
Forum rules
Ceton no longer participate in this forum. Official support may still be handled via the Ceton Ticket system.
rickbassham

Posts: 6
Joined: Fri Jun 08, 2012 3:24 pm
Location:

HTPC Specs: Show details

Ceton infiniTV 4 Temperature Monitor

#1

Post by rickbassham » Fri Jun 08, 2012 3:34 pm

I have been having some issues with the temperature of my Ceton infiniTV 4, and wanted to keep an eye on them over time, so I created an application that checks the temp and reports it to a windows performance counter every 10 seconds. I found it very useful, so I decided to release it to everyone. The application and source are available on Google Code. I haven't created any documentation on it, but it should be relatively easy to use. .Net 4.0 is required, and it must be run as Administrator to set everything up. Just run it, make sure your tuner's IP address is in the text box, install the service, then start the service. At that point, you should be able to go to the windows performance monitor (perfmon.exe) and add the counters.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#2

Post by Crash2009 » Sat Jun 09, 2012 7:54 pm

Your temperature monitor sounds like a great idea. Have you tried your code with CPUZ hardware monitor?

rickbassham

Posts: 6
Joined: Fri Jun 08, 2012 3:24 pm
Location:

HTPC Specs: Show details

#3

Post by rickbassham » Tue Jun 12, 2012 3:58 pm

I've never used it. Does it show the Ceton tuner temps? I guess the thing I like most about using performance counters is that you can set up performance monitor to record the current value every X (seconds, minutes, hours, etc) and have a record of your temp over time. This has allowed me to see what changing fans, ducting, etc. really does to the temp, not just at a given moment, but graphed over time.

User avatar
STC

Posts: 6808
Joined: Mon Jun 06, 2011 4:58 pm
Location:

HTPC Specs: Show details

#4

Post by STC » Tue Jun 12, 2012 6:57 pm

This is neat, thanks.
I've always relied on a quick manual scan, but this is great.
By the Community, for the Community. 100% Commercial Free.

Want decent guide data back? Check out EPG123

User avatar
STC

Posts: 6808
Joined: Mon Jun 06, 2011 4:58 pm
Location:

HTPC Specs: Show details

#5

Post by STC » Tue Jun 12, 2012 9:08 pm

Well, so far after a days worth of stat gathering, when at one point all four tuners were active and commercial skip was working hard, any of the four tuners never exceeded 50degC.
Ambient temp where the HTPC is located- 24degC. Internal HTPC case air temp 45degC (measured with a diode just over the PCIe sockets).
I'm happy with that.
By the Community, for the Community. 100% Commercial Free.

Want decent guide data back? Check out EPG123

stev0

Posts: 2
Joined: Mon Jun 18, 2012 1:01 am
Location:

HTPC Specs: Show details

#6

Post by stev0 » Mon Jun 18, 2012 1:04 am

This is a great idea! I just had a major issue this week where a case fan got clogged with cat hair and the Ceton card temp climbed to 97 C!
Tuners ceased to function as a result and it was very troublesome.

Thank you for providing this valuable code.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#7

Post by Crash2009 » Fri Aug 31, 2012 1:30 pm

Here is another method to monitor your temps etc. This one was edited to run on a Ceton with an ip of 192.168.1.50

Code: Select all

<html>
<body>
<div class='header'>Ceton InfiniTV Temperatures</div>
<table>
   <tr>
      <td width=100>Temp</td>
      <td width=100>Signal Level</td>
      <td width=100>SNR</td>
      <td width=100>Playback</td>
      <td width=100>Frequency</td>
      <td width=100>Modulation</td>
      <td width=200>Copy Protection</td>
      <td width=100>Channel</td>
   </tr>
</table>
<div id="variable_row">
   <div id="variable_label">Tuner #1:</div>
   <div id="variable_value">
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=diag&v=Temperature'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=diag&v=Signal_Level'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=diag&v=Signal_SNR'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=av&v=TransportState'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=tuner&v=Frequency'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=tuner&v=Modulation'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=diag&v=CopyProtectionStatus'>
      </iframe>
      <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=0&s=cas&v=VirtualChannelNumber'>
      </iframe>
   </div>
</div>
<div id="variable_label">Tuner #2:</div>
<div id="variable_value">
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=diag&v=Temperature'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=diag&v=Signal_Level'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=diag&v=Signal_SNR'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=av&v=TransportState'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=tuner&v=Frequency'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=tuner&v=Modulation'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=diag&v=CopyProtectionStatus'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=1&s=cas&v=VirtualChannelNumber'>
   </iframe>
</div>
<div id="variable_label">Tuner #3:</div>
<div id="variable_value">
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=diag&v=Temperature'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=diag&v=Signal_Level'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=diag&v=Signal_SNR'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=av&v=TransportState'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=tuner&v=Frequency'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=tuner&v=Modulation'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=diag&v=CopyProtectionStatus'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=2&s=cas&v=VirtualChannelNumber'>
   </iframe>
</div>
<div id="variable_label">Tuner #4:</div>
<div id="variable_value">
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=diag&v=Temperature'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=diag&v=Signal_Level'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=diag&v=Signal_SNR'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=av&v=TransportState'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=tuner&v=Frequency'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=tuner&v=Modulation'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=diag&v=CopyProtectionStatus'>
   </iframe>
   <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.1.50/get_var?i=3&s=cas&v=VirtualChannelNumber'>
   </iframe>
</div>
</body>
</html>
This one is written to run an ip of 192.168.200.1 and was provided to me by JohnW248

Code: Select all

++++++
<html>
<body>
<div class='header'>Ceton InfiniTV Temperatures</div>
<table>
 <tr>
 <td width=100>Temp</td>
 <td width=100>Signal Level</td>
 <td width=100>SNR</td>
 <td width=100>Playback</td>
 <td width=100>Frequency</td>
 <td width=100>Modulation</td>
 <td width=200>Copy Protection</td>
 <td width=100>Channel</td>
 </tr>
</table>
<div id="variable_row">
 <div id="variable_label">Tuner #1:</div>
 <div id="variable_value">
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=0&s=cas&v=VirtualChannelNumber'>
 </iframe>
 </div>
</div>
<div id="variable_label">Tuner #2:</div>
<div id="variable_value">
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=1&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
<div id="variable_label">Tuner #3:</div>
<div id="variable_value">
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=2&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
<div id="variable_label">Tuner #4:</div>
<div id="variable_value">
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:200px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:75px;' src='http://192.168.200.1/get_var?i=3&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
</body>
</html>
-----------
end
To use either version, just copy and paste the code into a new text document, then save the .txt file as a .html
Attachments
PLAYREADY018.jpg

rickbassham

Posts: 6
Joined: Fri Jun 08, 2012 3:24 pm
Location:

HTPC Specs: Show details

#8

Post by rickbassham » Fri Nov 02, 2012 7:48 pm

The first web page there is what gave me the idea. I like using the web page for a quick glance, but to see values over time, I needed something more.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#9

Post by Crash2009 » Sun Mar 03, 2013 2:16 am

rickbassham wrote:The first web page there is what gave me the idea. I like using the web page for a quick glance, but to see values over time, I needed something more.
Your a genius Rick, this works great! Thanks
Attachments
TempPerfMon001.JPG
TempPerfMon002.JPG

rickbassham

Posts: 6
Joined: Fri Jun 08, 2012 3:24 pm
Location:

HTPC Specs: Show details

#10

Post by rickbassham » Mon Mar 04, 2013 4:01 pm

Thanks. I'm glad you find it useful.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#11

Post by Crash2009 » Tue Mar 05, 2013 3:12 am

rickbassham wrote:Thanks. I'm glad you find it useful.
Hey Rick. Is it possible to save the data and maybe make a chart of temps over time?

rickbassham

Posts: 6
Joined: Fri Jun 08, 2012 3:24 pm
Location:

HTPC Specs: Show details

#12

Post by rickbassham » Tue Mar 05, 2013 5:08 pm

Absolutely. Just go to performance monitor, right click on the "User Defined" folder under "Data Collector Sets" and choose "New" -> "Data Collector Set". From here, follow the wizard to set up the performance counters you want to monitor (use the manual, or advanced option, not the templates). Then start the collector. Once it has been running long enough to capture some data, you can stop it (and then start it again to keep collecting data) and view it under the "Reports" section in performance monitor. You can also do some advanced scheduling in the options when you right-click on your data collector set. You can also make it restart automatically every day. Just right-click on the data collector set, choose "Properties" and go to the "Stop Condition" tab. There, check the "Restart..." checkbox and set up your restart parameters. It should give you a good log of data. Hope this helps you.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#13

Post by Crash2009 » Tue Mar 05, 2013 8:28 pm

Thanks Rick, that should get me started.

jevad

Posts: 1
Joined: Mon Sep 15, 2014 9:24 pm
Location:

HTPC Specs: Show details

#14

Post by jevad » Mon Sep 15, 2014 9:41 pm

THIS IS GREAT - you guys are brilliant!!!.... I believe some of my InfiniTV 6 ETH stability issues were temperature related, as I noted issues and temperatures in the ~68 degs C. I expanded the code to include tuners 6 & 7 (i=4 & 5). - I may try to use performance monitor for timed log issues. (may have solved issue by putting laptop cooler under it - things seem more stable).

Question for someone SMART!?!.... is there a way to pull which Streaming Destination IP address? I'd like to see which Tuner is servicing which computer on my network? it looks like some cgi code? here is the snippet.

<form action="/stream_request.cgi" method="post">
<input type="hidden" name="instance_id" value="5" />
<tr><td>Destination IP: </td><td><input type="text" id="dest_ip" name="dest_ip" /></td></tr>
<tr><td>Destination Port: </td><td><input type="text" id="dest_port" name="dest_port" /></td></tr>
<tr><td>Protocol:</td><td>
<select id="protocol" name="protocol">
<option value="0">RTP</option>
</select></td></tr>
<tr><td>State:</td><td>
<select id="start" name="start">
<option value="0">Stopped</option>
<option value="1">Started</option>
</select></td></tr>
<tr><td></td><td><input type="submit" value="Save Streaming Settings" /></td></tr>
</form>

mdavej

Posts: 1477
Joined: Mon Aug 20, 2012 6:52 pm
Location:

HTPC Specs: Show details

#15

Post by mdavej » Fri Sep 19, 2014 7:10 pm

Crash2009 wrote:Here is another method to monitor your temps etc.

To use either version, just copy and paste the code into a new text document, then save the .txt file as a .html
Here's my version a little easier on the eyes and expanded to 6 tuners plus card status, TR status, firmware version and uptime as well as a link to the main Ceton status. Search/replace the ip address with yours.

Code: Select all

<!DOCTYPE html>
<html>
<head>
<style>
body {
    background-color: darkgray;
}
</style>
</head>


<body>
<a href='http://192.168.1.120'>Ceton InfiniTV Status</a>
<table>
 <tr>
 <td width=90>Temp</td>
 <td width=80>Signal Level</td>
 <td width=100>SNR</td>
 <td width=100>Playback</td>
 <td width=100>Frequency</td>
 <td width=100>Modulation</td>
 <td width=300>Copy Protection</td>
 <td width=50>Channel</td>
 </tr>
</table>
<div id="variable_row">
 <div id="variable_value">
<strong>1</strong> 
<iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:70px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:80px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:300px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:50px; height:50px;' src='http://192.168.1.120/get_var?i=0&s=cas&v=VirtualChannelNumber'>
 </iframe>
 </div>
</div>
<div id="variable_row">
<div id="variable_value">
<strong>2</strong> 
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:70px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:80px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:300px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:50px; height:50px;' src='http://192.168.1.120/get_var?i=1&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
<div id="variable_row">
<div id="variable_value">
<strong>3</strong> 
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:70px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:80px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:300px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:50px; height:50px;' src='http://192.168.1.120/get_var?i=2&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
<div id="variable_row">
<div id="variable_value">
<strong>4</strong> 
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:70px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:80px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:300px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:50px; height:50px;' src='http://192.168.1.120/get_var?i=3&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
<div id="variable_row">
<div id="variable_value">
<strong>5</strong> 
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:70px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:80px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:300px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:50px; height:50px;' src='http://192.168.1.120/get_var?i=4&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>
<div id="variable_row">
<div id="variable_value">
<strong>6</strong> 
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:70px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=diag&v=Temperature'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:80px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=diag&v=Signal_Level'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=diag&v=Signal_SNR'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=av&v=TransportState'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=tuner&v=Frequency'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:100px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=tuner&v=Modulation'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:300px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=diag&v=CopyProtectionStatus'>
 </iframe>
 <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:50px; height:50px;' src='http://192.168.1.120/get_var?i=5&s=cas&v=VirtualChannelNumber'>
 </iframe>
</div>


<table>
 <tr>
 <td width=150>Firmware</td>
 <td width=150>TR</td>
 <td width=600>Uptime</td>
 </tr>
</table>
<div class="variable_row">
<div class="variable_value">
  <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:150px; height:28px;'src='http://192.168.1.120/get_var?i=0&s=diag&v=Host_Firmware'></iframe>
  <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:150px; height:28px;'src='http://192.168.1.120/get_var?i=6&s=octa&v=authentication_status'></iframe>
  <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:600px; height:28px;'src='http://192.168.1.120/get_var?i=0&s=diag&v=Uptime'></iframe>
</div>


<div class="variable_row">
<div class="variable_label">Card Authorization:</div>
<div class="variable_value" style="height: 70px;">
  <iframe frameborder='0' scrolling='no' style='padding: 0px; margin: 0px; width:750px; height:60px;'		src='http://192.168.1.120/get_var?i=0&s=cas&v=CardAuthorization'></iframe> 		
</div>
</body>
</html>

mdavej

Posts: 1477
Joined: Mon Aug 20, 2012 6:52 pm
Location:

HTPC Specs: Show details

#16

Post by mdavej » Fri Sep 19, 2014 7:12 pm

jevad wrote:...is there a way to pull which Streaming Destination IP address?
Sorry, that code is for configuring the RTP server, not for showing what clients are connected. I don't know how to do that.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#17

Post by Crash2009 » Fri Sep 19, 2014 8:04 pm

mdavej wrote:
jevad wrote:...is there a way to pull which Streaming Destination IP address?
Sorry, that code is for configuring the RTP server, not for showing what clients are connected. I don't know how to do that.
Not sure if this will help. The tuners IP is written in hex.

c0.a8.c8.02 =192.168.200.2 maybe tuner 1 is hex too.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#18

Post by Crash2009 » Thu Nov 13, 2014 8:55 am

mdavej wrote:
Here's my version a little easier on the eyes and expanded to 6 tuners plus card status, TR status, firmware version and uptime as well as a link to the main Ceton status. Search/replace the ip address with yours.
Nice, Thanks! Works great on the 4. I like seeing all at a glance, rather than digging around in the Device Page.

Got a question for you. If you go into the device page and set all your tuners to the same channel/frequency, then run the diag you wrote. What are the signal strengths from all 6 of your tuners?
Attachments
TUNER_INFO_017.JPG

mdavej

Posts: 1477
Joined: Mon Aug 20, 2012 6:52 pm
Location:

HTPC Specs: Show details

#19

Post by mdavej » Thu Nov 13, 2014 2:15 pm

Those look good. Mine are all a little different too. Should match what you see on the Ceton status pages. I've made a few more enhancements, showing DRM status, which I'll post soon.

User avatar
Crash2009

Posts: 4357
Joined: Thu May 17, 2012 12:38 am
Location: Ann Arbor, Michigan

HTPC Specs: Show details

#20

Post by Crash2009 » Thu Nov 13, 2014 4:22 pm

mdavej wrote:Those look good. Mine are all a little different too. Should match what you see on the Ceton status pages. I've made a few more enhancements, showing DRM status, which I'll post soon.
Yes, I know mine are good.....Had to shine my halo for 6 months to get them like that... :angel:

I am more interested in yours, well not necessarily yours, but the ETH6. My Infini4, best to worst has a point spread of (.5). Just trying to find out what the spread is on an ETH6. Let's just say that the signal strength is out of wack a bit, well maybe a lot, and the best tuner, at a frequency of 129,000 is say (8.6) There are six recordings scheduled, 5 record fine, but the sixth won't record due to "signal problem". Is it possible that the sixth tuner could be another (3 or 4) away from (zero) (8.6 plus 4) = (12.6) which is out of spec?

http://www.thegreenbutton.tv/forums/vie ... 580#p82580
Last edited by Crash2009 on Thu Nov 13, 2014 4:52 pm, edited 1 time in total.

Post Reply