Re: [weewx-user] formatting of current.inc

2022-08-11 Thread Neville Davis
Gary 

Thanks for that, I did look and look, it was the problem.

Neville

On Friday, August 12, 2022 at 3:08:32 PM UTC+10 gjr80 wrote:

> Not sure if it's the cause or not, but you might want to add the missing 
> '>' to the closing  at the end of this line:
>
> $gettext("Power Consumed today")
> Gary
>
> On Friday, 12 August 2022 at 12:27:21 UTC+10 nevilled...@gmail.com wrote:
>
>> 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
>>
>>
>> 
>>
>>   
>>
>> $gettext("Current Conditions")
>>
>> >
>>   onclick="toggle_widget('current')">
>>
>>   
>>
>>
>>   
>>
>>   
>>
>> 
>>
>>
>> #set $observations = $to_list($DisplayOptions.get('observations_current', 
>> ['outTemp', 'barometer']))
>>
>>
>> #for $x in $observations
>>
>>   #if $getVar('year.%s.has_data' % $x)
>>
>> #if $x == 'barometer'
>>
>>   
>>
>> $obs.label.barometer
>>
>> $current.barometer 
>> ($trend.barometer.formatted)
>>
>>   
>>
>> #elif $x == 'windSpeed'
>>
>>   
>>
>> $obs.label.wind
>>
>> $current.windSpeed 
>> $current.windDir.ordinal_compass ($current.windDir)
>>
>>   
>>
>> #elif $x == 'rain'
>>
>>   
>>
>> $gettext("Rain Today")
>>
>> $day.rain.sum
>>
>> ##$day($data_binding='wx_power').rain.sum
>>
>>   
>>
>> #elif $x == 'powerconsumed'
>>
>>   
>>
>> $gettext("Power Consumed today")>
>> $day.powerconsumed.sum.format("%.2f")
>>
>>   
>>
>> #else
>>
>>   
>>
>> $obs.label[$x]
>>
>> $getVar('current.' + $x)
>>
>>   
>>
>> #end if
>>
>>   #end if
>>
>> #end for
>>
>>
>> 
>>
>>   
>>
>>   
>>
>>
>> 
>>
>>
>> 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 
>>>  in 
>>> the Customizing Guide*.*
>>>
>>> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis  
>>> 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
  
 
 .

>>>

-- 
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/334e5b3f-12a5-4ca1-a558-96373c9df914n%40googlegroups.com.


Re: [weewx-user] formatting of current.inc

2022-08-11 Thread gjr80
Not sure if it's the cause or not, but you might want to add the missing 
'>' to the closing  at the end of this line:

$gettext("Power Consumed today") 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
>
>
> 
>
>   
>
> $gettext("Current Conditions")
>
> 
>   onclick="toggle_widget('current')">
>
>   
>
>
>   
>
>   
>
> 
>
>
> #set $observations = $to_list($DisplayOptions.get('observations_current', 
> ['outTemp', 'barometer']))
>
>
> #for $x in $observations
>
>   #if $getVar('year.%s.has_data' % $x)
>
> #if $x == 'barometer'
>
>   
>
> $obs.label.barometer
>
> $current.barometer 
> ($trend.barometer.formatted)
>
>   
>
> #elif $x == 'windSpeed'
>
>   
>
> $obs.label.wind
>
> $current.windSpeed 
> $current.windDir.ordinal_compass ($current.windDir)
>
>   
>
> #elif $x == 'rain'
>
>   
>
> $gettext("Rain Today")
>
> $day.rain.sum
>
> ##$day($data_binding='wx_power').rain.sum
>
>   
>
> #elif $x == 'powerconsumed'
>
>   
>
> $gettext("Power Consumed today")
> $day.powerconsumed.sum.format("%.2f")
>
>   
>
> #else
>
>   
>
> $obs.label[$x]
>
> $getVar('current.' + $x)
>
>   
>
> #end if
>
>   #end if
>
> #end for
>
>
> 
>
>   
>
>   
>
>
> 
>
>
> 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 
>>  in 
>> the Customizing Guide*.*
>>
>> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis  
>> 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
>>>  
>>> 
>>> .
>>>
>>

-- 
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/0def2033-e1fa-460e-b338-e4b029bd74e1n%40googlegroups.com.


Re: [weewx-user] formatting of current.inc

2022-08-11 Thread Neville Davis
Thanks

I thought I had posted a reply but can't see it so trying again
I will look at the guide again I obviously missed it.

the files hopefully are attached 

Neville


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 
>  in the 
> Customizing Guide*.*
>
> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis  
> 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
>>  
>> 
>> .
>>
>

-- 
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/8f1a5d85-e05d-480f-9a32-2182ec7dfb7an%40googlegroups.com.


current.inc
Description: Binary data
###
# SEASONS SKIN CONFIGURATION FILE #
# Copyright (c) 2018-2021 Tom Keffer  and Matthew Wall #
# See the file LICENSE.txt for your rights.   #
###

SKIN_NAME = Seasons
SKIN_VERSION = 4.8.0

###

# The following section is for any extra tags that you want to be available in
# the templates

[Extras]

# This radar image would be available as $Extras.radar_img
# radar_img = 
https://radblast.wunderground.com/cgi-bin/radar/WUNIDS_map?station=RTX=wui=18=15=N0R=0=1.000=1=1=1
# This URL will be used as the image hyperlink:
# radar_url =   
https://radar.weather.gov/?settings=v1_eyJhZ2VuZGEiOnsiaWQiOm51bGwsImNlbnRlciI6Wy0xMjEuOTE3LDQ1LjY2XSwiem9vbSI6OH0sImJhc2UiOiJzdGFuZGFyZCIsImNvdW50eSI6ZmFsc2UsImN3YSI6ZmFsc2UsInN0YXRlIjpmYWxzZSwibWVudSI6dHJ1ZSwic2hvcnRGdXNlZE9ubHkiOmZhbHNlfQ%3D%3D#/

# Similar to radar, but for satellite image.
#satellite_img = 
http://images.intellicast.com/WxImages/SatelliteLoop/hipacsat_None_anim.gif
#satellite_url = 
http://images.intellicast.com/WxImages/SatelliteLoop/hipacsat_None_anim.gif

# To display a map, enter an API key for google maps
#google_maps_apikey = xxx

# If you have a Google Analytics ID, uncomment and edit the next line, and
# the analytics code will be included in your generated HTML files:
#googleAnalyticsId = UA-12345678-1


###

# The following section contains variables that determine which observations
# and plots will be shown in the template files, and their order.  Like other
# configuration options, these can be overridden in the weewx config file.

[DisplayOptions]

# Show link to RSS feed?
show_rss = True

# Show link to NOAA-style summary reports?
show_reports = True

# This list determines which types will appear in the "current conditions"
# section, as well as in which order.
##observations_current = outTemp, heatindex, windchill, dewpoint, 
outHumidity, barometer, windSpeed, rain, rainRate, UV, radiation, 
lightning_strike_count, inTemp, inHumidity, extraTemp1, extraHumid1, 
extraTemp2, extraHumid2, pm1_0, pm2_5, pm10_0
observations_current = outTemp, outHumidity, barometer, windSpeed, rain, 
rainRate, powerconsumed, inTemp, inHumidity
# This list determines which types will appear in the "statistics" and
# "statistical summary" sections, as well as in which 

Re: [weewx-user] formatting of current.inc

2022-08-11 Thread Neville Davis
Thank I will look again at the Guide must have missed it.
Attached are the two files.
This is the initial stage of combining data from several systems, once I 
get this right the fun will begin.

Neville

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 
>  in the 
> Customizing Guide*.*
>
> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis  
> 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
>>  
>> 
>> .
>>
>

-- 
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/a244a38d-6e29-419c-aa41-5d8d2ea76eb9n%40googlegroups.com.


current.inc
Description: Binary data
###
# SEASONS SKIN CONFIGURATION FILE #
# Copyright (c) 2018-2021 Tom Keffer  and Matthew Wall #
# See the file LICENSE.txt for your rights.   #
###

SKIN_NAME = Seasons
SKIN_VERSION = 4.8.0

###

# The following section is for any extra tags that you want to be available in
# the templates

[Extras]

# This radar image would be available as $Extras.radar_img
# radar_img = 
https://radblast.wunderground.com/cgi-bin/radar/WUNIDS_map?station=RTX=wui=18=15=N0R=0=1.000=1=1=1
# This URL will be used as the image hyperlink:
# radar_url =   
https://radar.weather.gov/?settings=v1_eyJhZ2VuZGEiOnsiaWQiOm51bGwsImNlbnRlciI6Wy0xMjEuOTE3LDQ1LjY2XSwiem9vbSI6OH0sImJhc2UiOiJzdGFuZGFyZCIsImNvdW50eSI6ZmFsc2UsImN3YSI6ZmFsc2UsInN0YXRlIjpmYWxzZSwibWVudSI6dHJ1ZSwic2hvcnRGdXNlZE9ubHkiOmZhbHNlfQ%3D%3D#/

# Similar to radar, but for satellite image.
#satellite_img = 
http://images.intellicast.com/WxImages/SatelliteLoop/hipacsat_None_anim.gif
#satellite_url = 
http://images.intellicast.com/WxImages/SatelliteLoop/hipacsat_None_anim.gif

# To display a map, enter an API key for google maps
#google_maps_apikey = xxx

# If you have a Google Analytics ID, uncomment and edit the next line, and
# the analytics code will be included in your generated HTML files:
#googleAnalyticsId = UA-12345678-1


###

# The following section contains variables that determine which observations
# and plots will be shown in the template files, and their order.  Like other
# configuration options, these can be overridden in the weewx config file.

[DisplayOptions]

# Show link to RSS feed?
show_rss = True

# Show link to NOAA-style summary reports?
show_reports = True

# This list determines which types will appear in the "current conditions"
# section, as well as in which order.
##observations_current = outTemp, heatindex, windchill, dewpoint, 
outHumidity, barometer, windSpeed, rain, rainRate, UV, radiation, 
lightning_strike_count, inTemp, inHumidity, extraTemp1, extraHumid1, 
extraTemp2, extraHumid2, pm1_0, pm2_5, pm10_0
observations_current = outTemp, outHumidity, barometer, windSpeed, rain, 
rainRate, powerconsumed, inTemp, inHumidity
# This list determines which types will appear in the "statistics" and
# "statistical 

Re: [weewx-user] formatting of current.inc

2022-08-11 Thread Neville Davis
I have added my new observation to the group and my data now displays with 
units correctly that is "16622.49 Wh"...and the daily sum is correct.
It still positions itself at the top of the current.inc widget.

Neville

On Friday, August 12, 2022 at 12:27:21 PM UTC+10 Neville Davis wrote:

> 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
>
>
> 
>
>   
>
> $gettext("Current Conditions")
>
> 
>   onclick="toggle_widget('current')">
>
>   
>
>
>   
>
>   
>
> 
>
>
> #set $observations = $to_list($DisplayOptions.get('observations_current', 
> ['outTemp', 'barometer']))
>
>
> #for $x in $observations
>
>   #if $getVar('year.%s.has_data' % $x)
>
> #if $x == 'barometer'
>
>   
>
> $obs.label.barometer
>
> $current.barometer 
> ($trend.barometer.formatted)
>
>   
>
> #elif $x == 'windSpeed'
>
>   
>
> $obs.label.wind
>
> $current.windSpeed 
> $current.windDir.ordinal_compass ($current.windDir)
>
>   
>
> #elif $x == 'rain'
>
>   
>
> $gettext("Rain Today")
>
> $day.rain.sum
>
> ##$day($data_binding='wx_power').rain.sum
>
>   
>
> #elif $x == 'powerconsumed'
>
>   
>
> $gettext("Power Consumed today")
> $day.powerconsumed.sum.format("%.2f")
>
>   
>
> #else
>
>   
>
> $obs.label[$x]
>
> $getVar('current.' + $x)
>
>   
>
> #end if
>
>   #end if
>
> #end for
>
>
> 
>
>   
>
>   
>
>
> 
>
>
> 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 
>>  in 
>> the Customizing Guide*.*
>>
>> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis  
>> 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
>>>  
>>> 
>>> .
>>>
>>

-- 
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/558af92c-5158-4071-b106-01ce22a4c277n%40googlegroups.com.


Re: [weewx-user] formatting of current.inc

2022-08-11 Thread Neville Davis
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




  

$gettext("Current Conditions")



  


  

  




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


#for $x in $observations

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

#if $x == 'barometer'

  

$obs.label.barometer

$current.barometer 
($trend.barometer.formatted)

  

#elif $x == 'windSpeed'

  

$obs.label.wind

$current.windSpeed 
$current.windDir.ordinal_compass ($current.windDir)

  

#elif $x == 'rain'

  

$gettext("Rain Today")

$day.rain.sum

##$day($data_binding='wx_power').rain.sum

  

#elif $x == 'powerconsumed'

  

$gettext("Power Consumed today")$day.powerconsumed.sum.format("%.2f")

  

#else

  

$obs.label[$x]

$getVar('current.' + $x)

  

#end if

  #end if

#end for




  

  





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 
>  in the 
> Customizing Guide*.*
>
> On Thu, Aug 11, 2022 at 6:50 PM Neville Davis  
> 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
>>  
>> 
>> .
>>
>

-- 
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.