Tycon Systems, "ProWeatherStation" TM, Model TP3000WC is up and running
"weewx." Dedicated, persistent, hard work was done by lang.
1. Install weewx; I used Debian install documentation for install.
2. Download weewx-Interceptor and follow install documentation:
Interceptor driver <https://github.com/matthewwall/weewx-interceptor>
3. Configure weewx.conf "sudo nano /etc/weewx/weewx.conf" See "Excert
weewx.conf;" use "sudo ifconfig" to find iface.
4. Setup WS View Android app. I had alewady configured my PWS to use
Weather . Underground, Select device from device list. Tap on
device 4 times to come to "Customize." Config "customize" according to "WS
View --settings.jpg" image. substrate your ip address where"weewx" is
running.
5. Start "weewx:" "sudo /etc/init.d/weewx start /etc/weewx/weewx.conf"
6. View syslog: "sudo tail -f /var/log/syslog | grep weewx May take a
few minutes; you will see your data"
7. View as web page: Open Browser and go to "localhost/weewx" See
"Excert syslog.txt" to see data from my PWS running "weewx."
William
--
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/74419226-1770-4914-a8d5-2557a5e7e87cn%40googlegroups.com.
# WEEWX CONFIGURATION FILE
#
# Copyright (c) 2009-2021 Tom Keffer <[email protected]>
# See the file LICENSE.txt for your rights.
##############################################################################
# This section is for general configuration information.
# Set to 1 for extra debug info, otherwise comment it out or set to zero
debug = 1
# Root directory of the weewx data file hierarchy for this station
WEEWX_ROOT = /
# Whether to log successful operations
log_success = True
# Whether to log unsuccessful operations
log_failure = True
# How long to wait before timing out a socket (FTP, HTTP) connection
socket_timeout = 20
# Do not modify this. It is used when installing and updating weewx.
version = 4.3.0
##############################################################################
# This section is for information about the station.
[Station]
# Description of the station location
location = ""
# Latitude in decimal degrees. Negative for southern hemisphere
latitude =
# Longitude in decimal degrees. Negative for western hemisphere.
longitude =
# Altitude of the station, with unit it is in. This is downloaded from
# from the station if the hardware supports it.
altitude =
# Set to type of station hardware. There must be a corresponding stanza
# in this file with a 'driver' parameter indicating the driver to be used.
station_type = Interceptor
# If you have a website, you may specify an URL
#station_url = http://www.example.com
# The start of the rain year (1=January; 10=October, etc.). This is
# downloaded from the station if the hardware supports it.
rain_year_start = 1
# Start of week (0=Monday, 6=Sunday)
week_start = 6
##############################################################################
[Interceptor]
# This section is for the network traffic interceptor driver.
# The driver to use:
driver = user.interceptor
# Specify the hardware device to capture. Options include:
# acurite-bridge - acurite internet bridge, smarthub, or access
# observer - fine offset WH2600/HP1000/HP1003, ambient WS2902
# lw30x - oregon scientific LW301/LW302
# lacrosse-bridge - lacrosse GW1000U/C84612 internet bridge
# ecowitt-client - any hardware that uses the ecowitt protocol
# wu-client - any hardware that uses the weather underground protocol
device_type = ecowitt-client
port = 8000
# Use ifconf to find your interface associated with your ip address
iface = enp5s0
##############################################################################
william@Oscar-Mint:~$ sudo tail -f /var/log/syslog | grep weewx
[sudo] password for william:
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: ignored parameter
dailyrainin=0.047
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: ignored parameter
weeklyrainin=0.059
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: ignored parameter
monthlyrainin=1.189
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: ignored parameter
yearlyrainin=1.189
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: ignored parameter
freq=433M
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: ignored parameter
model=WS2350_V2.37'
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: raw packet:
{'dateTime': 1611715497, 'usUnits': 1, 'temperature_in': 67.3, 'humidity_in':
41.0, 'pressure': 29.179, 'temperature_out': 34.2, 'humidity_out': 74.0,
'wind_dir': 253.0, 'wind_speed': 3.4, 'wind_gust': 4.5, 'rain_rate': 0.0,
'rain_total': 1.799, 'solar_radiation': 0.0, 'uv': 0.0, 'wh65_battery': 0.0,
'rain': 0.0}
Jan 26 21:44:58 Oscar-Mint weewx[761] DEBUG user.interceptor: mapped packet:
{'dateTime': 1611715497, 'usUnits': 1, 'pressure': 29.179, 'outHumidity': 74.0,
'inHumidity': 41.0, 'outTemp': 34.2, 'inTemp': 67.3, 'windSpeed': 3.4,
'windGust': 4.5, 'windDir': 253.0, 'radiation': 0.0, 'rain': 0.0, 'rainRate':
0.0, 'UV': 0.0}