Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
nhorvath committed Mar 24, 2019
1 parent 6679b70 commit 7e05651
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DEV_WEATHER.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
private:
Weather::ReturnVals InternalGetVals(const Weather::Settings & settings) const;
```
2. Add commented out #define WEATHER_YOUR_PROVIDER line to settings.h
2. Add commented out #define WEATHER_YOUR_PROVIDER line to config.h
3. Add #elif defined(WEATHER_YOUR_PROVIDER) blocks to the following places:
* core.cpp includes
* core.cpp `static runStateClass::DurationAdjustments AdjustDurations(Schedule * sched)` function
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Follow the directions below to enable a weather provider. If you change weather
before rebuilding.

### DarkSky Weather
Uncomment `#define WEATHER_DARKSKY` in settings.h before building.
Uncomment `#define WEATHER_DARKSKY` in config.h before building.

DarkSky is currently unsupported on Arduino/AVR Platforms due to a dependence on curl and a JSON library that is currently untested on Arduino.

Expand All @@ -35,7 +35,7 @@ Location must be (without the quotes):
* GPS Latitude,Longitude (eg. "40.749748,-73.991618")

### Aeris Weather
Uncomment `#define WEATHER_AERIS` in settings.h before building.
Uncomment `#define WEATHER_AERIS` in config.h before building.

Once you have built and started the server fill out the API Id, API Secret, and Location in the Settings page.
Your API Id and Secret can be found here: https://www.aerisweather.com/account/apps (account required, free,
Expand All @@ -49,7 +49,7 @@ Location can be any of the following:
### Wunderground
Wunderground setup requires you to have previously created an API Key, and for them to have not shut it down yet (As of 2019/03/15 it's no longer working for me).

Uncomment `#define WEATHER_WUNDERGROUND` in settings.h before building.
Uncomment `#define WEATHER_WUNDERGROUND` in config.h before building.

### Testing Weather Data
You can click on Advanced -> Weather Provider Diagnostics to verify your setup is working.
Expand Down

0 comments on commit 7e05651

Please sign in to comment.