Forum User Rehabman found this awesome little tweak for you CETON InfiniTV4 CableCARD users out there!
-Michael Garcen
Thought I would share this little hack with those needing a quick look at all the Ceton Tuner temperatures.
Because clicking amongst the various pages provided by the Ceton web interface is a pain.
I used View Source and my extremely limited knowledge of HTML to put this together…
To use it,
1. launch notepad.exe and paste the following,
2. then save as Temps.html (or whatever you please).
3. Then go to your web browser (I only tried IE8) and load the file you saved.
—– cut here — Temps.html —
<html>
<body>
<div class=’header’>Ceton InfiniTV Temperatures</div>
<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:450px; height:28px;’ src=’http://192.168.200.1/get_var?i=0&s=diag&v=Temperature’>
</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:450px; height:28px;’ src=’http://192.168.200.1/get_var?i=1&s=diag&v=Temperature’>
</iframe>
</div>
</div>
<div id=”variable_label”>Tuner #3:</div>
<div id=”variable_value”>
<iframe frameborder=’0′ scrolling=’no’ style=’padding: 0px; margin: 0px; width:450px; height:28px;’ src=’http://192.168.200.1/get_var?i=2&s=diag&v=Temperature’>
</iframe>
</div>
</div>
<div id=”variable_label”>Tuner #4:</div>
<div id=”variable_value”>
<iframe frameborder=’0′ scrolling=’no’ style=’padding: 0px; margin: 0px; width:450px; height:28px;’ src=’http://192.168.200.1/get_var?i=3&s=diag&v=Temperature’>
</iframe>
</div>
</div>
</body>
</html>
—- end cut —–
Hope you find it useful… and if you make improvements, please reply.
Thanks,
// Dean