Skip to content

Commit

Permalink
Merge branch 'release/0.0.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
killroyboy committed May 21, 2018
2 parents a527240 + c4c1ea9 commit e046fcc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Alternatively, the following environment variables can be used to override confi
- AMBIENT_API_KEY - (Obtained from your AmbientWeather.net profile page)
- AMBIENT_APP_KEY - (Obtained by requesting from AmbientWeather support)
- PWD_STATION_ID - (From your PWS Weather account)
- PWD_PASSWORD - (From your PWS Weather account)
- PWD_PASSWORD - (From your PWS Weather account. NOTE: Your password cannot have any punctuation or special characters)
- LOG_LEVEL - (debug, info, warn, error)

Author
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ api.on('data', data => {
params = _.merge(data, {
ID : pwsStation,
PASSWORD : pwsPassword,
dateutc : moment(data.date).format('YYYY-MM-DD+HH:mm:ss'),
dateutc : moment(data.date).format('YYYY-MM-DD HH:mm:ss'),
baromin : data.baromrelin,
dewptf : data.dewPoint,
humidity : data.humidityin,
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ambient2pwsweather",
"version": "0.0.3",
"version": "0.0.4",
"description": "Pull weather data from AmbientWeather.net and push to PWSWeather",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit e046fcc

Please sign in to comment.