I have weewx-loopdata 1.1.13, only the default km_per_hour definition -> 
the loop-data.txt is OK.
Why is my WeatherBoard not working? Only time is running.

-- 
You received this message because you are subscribed to the Google Groups 
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/b24a6c1c-9b40-4c1b-abde-cf1c40d127e2n%40googlegroups.com.
## Copyright (C)2020 by John A Kline ([email protected])
## Distributed under the terms of the GNU Public License (GPLv3)
## See LICENSE for your rights.
#errorCatcher Echo
#encoding UTF-8
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="icon" type="image/png" href="favicon.ico" />
    <link rel="stylesheet" type="text/css" href="weatherboard.css"/>
    #if $Extras.has_key('meta_title')
      <title>$Extras.meta_title</title>
    #else
      <title>WeatherBoard&trade;&mdash;$station.location</title>
    #end if
    <meta name="description" content="Tablet formatted display of current 
temperature, dew point, wind speed, 10m max wind gust, today's max wind gust, 
today's rainfall and current rain rate.">
    <style>
      #centered {
        width:100%;
        margin: auto;
      }
    </style>
  </head>
  <body style="background-color:black;">
    #include "analytics.inc"
    #include "realtime_updater.inc"
    <div style="background-color:black;color:#e51b23;">
      <div>
        <table id="centered">
          <tr>
            #if $Extras.has_key('logo') and $Extras.logo != ''
              <td style="text-align:left;">
                <img src='$Extras.logo' alt='' width="200"/>
              </td>
            #else
              <td style="text-align:left;width:200px;">
              </td>
            #end if
            <td style="text-align:center;">
              <h1 class="page_title" style="font-size:28px;">
                #if $Extras.has_key('title')
                  $Extras.title
                #else
                  WeatherBoard&trade;
                #end if
              </h1>
              <span class="lastupdate" style="font-size:18px;">
                #if $Extras.has_key('subtitle')
                  $Extras.subtitle
                #else
                  Updated continuously.
                #end if
              </span>
            </td>
            <td style="text-align:right;width:200px;">
              <span id="live-label"></span><br/>&nbsp;
            </td>
          </tr>
        </table>
      </div>
    </div>

    <div>
      <div>
        <div>
          <div>
            <table>
            </table>
          </div>
          <div style="color:red;">
            <table id="centered">
              <tr>
                <td 
style="text-align:center;font-family:monospace;font-size:105px"><span 
id="FMT_outTemp">$current.outTemp</span><span>&nbsp;</span><span 
id="FMT_appTemp">$current.appTemp</span></td>
              </tr>
              <tr>
                <td id="windSpeedAndBearing" 
style="font-family:monospace;font-size:105px;text-align:center;">$current.windSpeed
 $current.windDir.ordinal_compass</td>
              </tr>
              <tr>
                <td 
style="font-family:monospace;font-size:85px;text-align:center;"><span 
id="FMT_10mMaxGust"></span><span>&nbsp;&mdash;&nbsp;</span><span 
id="FMT_HI_windGust"></span>
                </td>
              </tr>
              <tr>
                <td 
style="text-align:center;font-family:monospace;font-size:85px;"><span 
id="FMT_SUM_rain">$day.rain.sum</span><span>&nbsp;&mdash;&nbsp;</span><span 
id="FMT_rainRate">$current.rainRate</span></td>
              </tr>
            </table>
          </div>
        </div>
      </div>
    </div>
    #include "footer.inc"
  </body>
</html>

Reply via email to