Hi Tom,
[DataBindings]
[[wx_binding]]
# The database must match one of the sections in [Databases].
# This is likely to be the only option you would want to change.
database = archive_sqlite
# The name of the table within the database.
table_name = archive
# The manager handles aggregation of data for historical summaries.
manager = weewx.manager.DaySummaryManager
# The schema defines the structure of the database.
# It is *only* used when the database is created.
schema = weewx.schemas.wview_extended.schema
[[wu_binding]]
database = wu_mysql
table_name = archive
manager = weewx.wxmanager.WXDaySummaryManager
schema = weewx.schemas.wview_extended.schema
[[forecast_binding]]
manager = weewx.manager.Manager
schema = user.forecast.schema
table_name = archive
database = forecast_sqlite
[[climate_binding]]
# The climate database must match one of the sections in [Databases].
database = climate_sqlite
# The name of the table within the database.
table_name = climate_data
# Specialized databases manager used by the extension
manager = user.climate.climate.StatsManager
[Databases]
# A SQLite database is simply a single file.
[[archive_sqlite]]
database_name = weewx.sdb
database_type = SQLite
# MySQL
[[archive_mysql]]
database_name = weewx
database_type = MySQL
[[wu_mysql]]
database_name = weewx3
database_type = MySQL
[[forecast_sqlite]]
database_name = forecast.sdb
database_type = SQLite
# The store for climatological data.
[[climate_sqlite]]
database_name = climate.sdb
database_type = SQLite
No errors when I set the log to debug. The strange thing is the current settings do display the inside temperature and humitdity so Weewx is able to access the data:
<tr>
<td class="label">$obs.label.inTemp</td>
<td class="data">$latest($data_binding='wu_binding').inTemp</td>
</tr>
<tr>
<td class="label">$obs.label.inHumidity</td>
<td class="data">$latest($data_binding='wu_binding').inHumidity</td>
</tr>
Keith