Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4018) - 28 March 2024

Legacy Cumulus 1 release v1.9.4 (build 1099) - 28 November 2014 (a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

Feature Request: Adding Inside Temp to web dashboard

Topics about the Beta trials up to Build 3043, the last build by Cumulus's founder Steve Loft. It was by this time way out of Beta but Steve wanted to keep it that way until he made a decision on his and Cumulus's future.

Moderator: mcrossley

Locked
HKWe5e
Posts: 3
Joined: Thu 07 Jan 2016 2:06 am
Weather Station: Davis Vantage VUE
Operating System: Ubuntu
Location: Montréal

Feature Request: Adding Inside Temp to web dashboard

Post by HKWe5e »

Inside temperature is "missing" from the web dashboard.

I implemented a way to view inside temperature directly off of the Dashboard (--.- °C). CumulusMX now shows the same information as the station's hardware console.

My solution is very crude; it was made by editing interface/index.html. It shows what I have settled for in my installation.

I changed this original code:

Code: Select all

<div class="cont" >
    <span id="OutdoorTemp" style="font-size:400%">--.-</span>&nbsp;<span class="TempUnit" style="vertical-align:150%">&deg;C</span>
    <p><img id="TempTrendImg" src="img/up-small.png" alt=""> <span id="TempTrend">-.-</span>&nbsp;<span class="TempUnit">&deg;C</span>/hr</p>
</div>
<div class="cont" >
    <p><span>High&nbsp;</span><span id="HighTempToday" class="high">--.-</span><br><span id="HighTempTodayTime">--:--</span></p>
    <p><span>Low&nbsp;&nbsp;</span><span id="LowTempToday" class="low">--.-</span><br><span id="LowTempTodayTime">--:--</span></p></div>
For this replacement code:

Code: Select all

<div class="cont" >
    Outside&nbsp;&nbsp;&nbsp;<span id="OutdoorTemp" style="font-size:200%">--.-</span>&nbsp;<span class="TempUnit" style="vertical-align:50%">&deg;C</span>
    <img id="TempTrendImg" src="img/up-small.png" alt=""> <span id="TempTrend">-.-</span>&nbsp;<span class="TempUnit">&deg;C</span>/hr<p>
</div>
<div class="cont" >
    <span>High&nbsp;</span><span id="HighTempToday" class="high">--.-</span>&nbsp;@&nbsp;<span id="HighTempTodayTime">--:--</span><p>Low&nbsp;</span><span id="LowTempToday" class="low">--.-</span>  @  <span id="LowTempTodayTime">--:--</span></p></p></p></div>
    Inside&nbsp;&nbsp;&nbsp;<span id="IndoorTemp" style="font-size:200%">--.-</span>&nbsp;<span class="TempUnit" style="vertical-align:50%">&deg;C</span>
</div>
An elegant and permanent addition from you would be most appreciated!

Many thanks for your time.
Locked