Compare commits

..

No commits in common. "fa0a9f4ddcb697d1d7e002d38d8d569f0d0eda12" and "3af1cc40a561cf839c9f19555f9e91668bac76bf" have entirely different histories.

2 changed files with 1 additions and 2 deletions

View File

@ -7,7 +7,6 @@
- [ ] Add device name field with ID/Key mappings - [ ] Add device name field with ID/Key mappings
- [ ] Add device type field with ID/Key mappings - [ ] Add device type field with ID/Key mappings
- [ ] Move EVERYTHING to pointers to support nil - [ ] Move EVERYTHING to pointers to support nil
- [ ] Add proxy to upstream support
## Done ## Done
- [x] Consolidate battery status into one metric with device label - [x] Consolidate battery status into one metric with device label

View File

@ -43,7 +43,7 @@ func MapAwnUpdate(awnUpdate *AmbientWeatherUpdate) *weather.WeatherUpdate {
DateUTC: &updateTime, DateUTC: &updateTime,
TempOutdoorF: awnUpdate.TempF, TempOutdoorF: awnUpdate.TempF,
HumidityOudoor: awnUpdate.Humidity, HumidityOudoor: awnUpdate.Humidity,
WindSpeedMPH: awnUpdate.WindSpeedMPH, WindSpeedMPH: awnUpdate.WindGustMPH,
WindGustMPH: awnUpdate.WindGustMPH, WindGustMPH: awnUpdate.WindGustMPH,
MaxDailyGust: awnUpdate.MaxDailyGust, MaxDailyGust: awnUpdate.MaxDailyGust,
WindDir: awnUpdate.WindDir, WindDir: awnUpdate.WindDir,