Library for interfacing to Sparkfun Weather Meters.

Dependents:   WeatherStation Deneme testgeneral ... more

Committer:
AdamGreen
Date:
Sat Feb 25 03:23:51 2012 +0000
Revision:
0:457832d52954

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AdamGreen 0:457832d52954 1 /* Copyright 2012 Adam Green (http://mbed.org/users/AdamGreen/)
AdamGreen 0:457832d52954 2
AdamGreen 0:457832d52954 3 Licensed under the Apache License, Version 2.0 (the "License");
AdamGreen 0:457832d52954 4 you may not use this file except in compliance with the License.
AdamGreen 0:457832d52954 5 You may obtain a copy of the License at
AdamGreen 0:457832d52954 6
AdamGreen 0:457832d52954 7 http://www.apache.org/licenses/LICENSE-2.0
AdamGreen 0:457832d52954 8
AdamGreen 0:457832d52954 9 Unless required by applicable law or agreed to in writing, software
AdamGreen 0:457832d52954 10 distributed under the License is distributed on an "AS IS" BASIS,
AdamGreen 0:457832d52954 11 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AdamGreen 0:457832d52954 12 See the License for the specific language governing permissions and
AdamGreen 0:457832d52954 13 limitations under the License.
AdamGreen 0:457832d52954 14 */
AdamGreen 0:457832d52954 15 /* Implementation of class to interface with wind vane sensor Sparkfun Weather Meters:
AdamGreen 0:457832d52954 16 http://www.sparkfun.com/products/8942
AdamGreen 0:457832d52954 17 */
AdamGreen 0:457832d52954 18 #ifndef _WIND_VANE_H_
AdamGreen 0:457832d52954 19 #define _WIND_VANE_H_
AdamGreen 0:457832d52954 20
AdamGreen 0:457832d52954 21 namespace AFP
AdamGreen 0:457832d52954 22 {
AdamGreen 0:457832d52954 23
AdamGreen 0:457832d52954 24 class CWindVane
AdamGreen 0:457832d52954 25 {
AdamGreen 0:457832d52954 26 protected:
AdamGreen 0:457832d52954 27 AnalogIn m_WindVaneAnalogIn;
AdamGreen 0:457832d52954 28 float m_WindVaneVoltageTable[16];
AdamGreen 0:457832d52954 29
AdamGreen 0:457832d52954 30 public:
AdamGreen 0:457832d52954 31 CWindVane(PinName WindVanePin, float WindVaneSeriesResistance = 10000.0f);
AdamGreen 0:457832d52954 32
AdamGreen 0:457832d52954 33 const char* GetWindDirectionAsString();
AdamGreen 0:457832d52954 34 float GetWindDirectionAsAngle();
AdamGreen 0:457832d52954 35
AdamGreen 0:457832d52954 36 protected:
AdamGreen 0:457832d52954 37 size_t DetermineWindDirectionIndex();
AdamGreen 0:457832d52954 38 };
AdamGreen 0:457832d52954 39
AdamGreen 0:457832d52954 40 } // namespace AFP
AdamGreen 0:457832d52954 41 using namespace AFP;
AdamGreen 0:457832d52954 42
AdamGreen 0:457832d52954 43 #endif // _WIND_VANE_H_