[weewx-user] Add new observation - micro_sievert_hour (4.9.1, skin Bootstrap)

2023-01-03 Thread anb...@gmail.com
Hello, I will be highly appreciated if someone point me what is wrong when I adding new observation. Contents of extensions.py as following: weewx.units.obs_group_dict['ion_rad'] = 'group_radex' weewx.units.obs_group_dict['cpm'] = 'group_counter' weewx.units.USUnits['group_radex'] = 'micro_sie

Re: [weewx-user] Add new observation - micro_sievert_hour (4.9.1, skin Bootstrap)

2023-01-05 Thread anb...@gmail.com
ine is doing its own lookup. So it is > unaware of the new unit. It also is not providing a fallback, hence the > error. > > On Tue, Jan 3, 2023 at 8:01 AM anb...@gmail.com wrote: > >> Hello, >> >> I will be highly appreciated if someone point me what is

[weewx-user] Augment weather station data with level of ionizing radiation

2021-04-05 Thread anb...@gmail.com
Hello, I have idea to augment weather station data with level of ionizing radiation. Simple and inexpensive geiger counter model was chosen. Device is Radex One. Primarily unit works with dedicated Windows software via USB port. After some playing with serial port monitor is possible to send

[weewx-user] Re: Augment weather station data with level of ionizing radiation

2021-04-24 Thread anb...@gmail.com
Dear community, Need some help regarding geiger counter integration for Weewx. Below is code which works fine and give output to console. Routine is pretty simple -serial port initialization, sending special hex string to device, then decoding some bytes range in hex string answer. Code is belo

Re: [weewx-user] Add new observation - micro_sievert_hour (4.9.1, skin Bootstrap)

2023-02-27 Thread anb...@gmail.com
with live weather data. Here is how it looks like in > action: https://www.kainzbauer.net/weather/Rif/ > anb...@gmail.com schrieb am Donnerstag, 5. Januar 2023 um 21:06:19 UTC+1: > >> Thanks Tom! >> >> Possible to write example, how to use weewx to lookup a string format

[weewx-user] Measurement string format lookup

2023-03-20 Thread anb...@gmail.com
Hello, Can someone advise me regarding how to lookup measurement string format using extensions.py? For now skin is searching string format in skin.conf file using label_format = self.units_dict['StringFormats'][target_unit] How to modify this, to use extensions.py for string format lookup. T