My responses keep getting deleted not sure why, possibly attachments????

I will again look at the guide must have missed the info.
Yes I did add "powerconsumed" in the "observations_current" in skin.conf 
list.
I had already removed those items I wished not to display and added my new 
observation after rainRate as follows...
" observations_current = outTemp, outHumidity, barometer, windSpeed, rain, 
rainRate, powerconsumed, inTemp, inHumidity"
this is my current.inc file..

Hopefully this is posted

Neville

## current module for weewx skins

## Copyright Tom Keffer, Matthew Wall

## See LICENSE.txt for your rights

#errorCatcher Echo

#encoding UTF-8


<div id='current_widget' class="widget">

  <div class="widget_title">

    $gettext("Current Conditions")

    <a class="widget_control"

      onclick="toggle_widget('current')">&diams;</a>

  </div>


  <div class="widget_contents">

  <table>

    <tbody>


#set $observations = $to_list($DisplayOptions.get('observations_current', 
['outTemp', 'barometer']))


#for $x in $observations

  #if $getVar('year.%s.has_data' % $x)

    #if $x == 'barometer'

      <tr>

        <td class="label">$obs.label.barometer</td>

        <td class="data">$current.barometer 
($trend.barometer.formatted)</td>

      </tr>

    #elif $x == 'windSpeed'

      <tr>

        <td class="label">$obs.label.wind</td>

        <td class="data">$current.windSpeed 
$current.windDir.ordinal_compass ($current.windDir)</td>

      </tr>

    #elif $x == 'rain'

      <tr>

        <td class="label">$gettext("Rain Today")</td>

        <td class="data">$day.rain.sum</td>

        ##<td class="data">$day($data_binding='wx_power').rain.sum</td>

      </tr>

    #elif $x == 'powerconsumed'

      <tr>

        <td class="label">$gettext("Power Consumed today")</td

        <td class="data">$day.powerconsumed.sum.format("%.2f")</td>

      </tr>

    #else

      <tr>

        <td class="label">$obs.label[$x]</td>

        <td class="data">$getVar('current.' + $x)</td>

      </tr>

    #end if

  #end if

#end for


    </tbody>

  </table>

  </div>


</div>


On Friday, August 12, 2022 at 12:00:23 PM UTC+10 tke...@gmail.com wrote:

> It would be useful to have more information. Did you add "powerconsumed" 
> to the list "observations_current" in skin.conf? If so, where in the list? 
>
> Instead of including a screenshot of current.inc, how about posting an 
> actual copy of both it, and skin.conf? 
>
> As for your second question, see the section Assigning a unit group 
> <http://www.weewx.com/docs/customizing.htm#Assigning_a_unit_group> in the 
> Customizing Guide*.*
>
> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis <nevilled...@gmail.com> 
> wrote:
>
>>
>> I have data being stored in watt Hrs in the db and have a daily sum 
>> formatted to 2 decimal places in the current.inc file, it displays within 
>> the widget but at the top of the section (see attached). Any ideas on how 
>> to correct this please
>> I also would like to know how to add an observation to the standard 
>> groups, e.g the observation "powerconsumed" add to the group "group_energy"
>> Any help would be appreciated.
>>
>> Neville
>> . [image: Screen Shot 2022-08-12 at 11.33.41 am.png]
>> [image: Screen Shot 2022-08-12 at 11.44.34 am.png]
>>
>> -- 
>> 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 weewx-user+...@googlegroups.com.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/weewx-user/a541c33f-1b1b-4966-ae67-a0273e6632f0n%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/weewx-user/a541c33f-1b1b-4966-ae67-a0273e6632f0n%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
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 weewx-user+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/weewx-user/fcd88bce-b67a-4d4d-a701-363fe14f958en%40googlegroups.com.

Reply via email to