Skip to content

Commit

Permalink
updated units, removed postfix from WH2600_WindDirection
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeTheTux authored Dec 30, 2018
1 parent e64e53a commit 8cb0164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pws_bridge.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ app.get(PWSURI, (req, response) => {
["WH2600_DewPoint", req.query.dewptf, "°F"],
["WH2600_WindChill", req.query.windchillf, "°F"],
["WH2600_HeatIndex", heatindex, "°F"],
["WH2600_WindDirection2", req.query.winddir],
["WH2600_WindDirection", req.query.winddir],
["WH2600_WindSpeed", req.query.windspeedmph, "mph"],
["WH2600_WindGust", req.query.windgustmph, "mph"],
["WH2600_RainH", req.query.rainin, "in"],
Expand All @@ -71,7 +71,7 @@ app.get(PWSURI, (req, response) => {
["WH2600_UV", req.query.UV],
["WH2600_Indoor_Temperature", req.query.indoortempf, "°F"],
["WH2600_Indoor_Humidity", req.query.indoorhumidity],
["WH2600_Pressure", req.query.baromin],
["WH2600_Pressure", req.query.baromin, "inHg"],
["WH2600_LowBat", (req.query.lowbatt=="0") ? "OFF":"ON"],
["WH2600_SoftwareType", req.query.softwaretype],
["WH2600_Date", localDate],
Expand Down

0 comments on commit 8cb0164

Please sign in to comment.