Core Base Classes for the Light Endpoints
Dependents: mbed_mqtt_endpoint_ublox_ethernet mbed_mqtt_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_cellular mbed_nsp_endpoint_ublox_ethernet ... more
ExternalLEDLight.h@192:54b758a8eaaa, 2014-09-26 (annotated)
- Committer:
- ansond
- Date:
- Fri Sep 26 05:16:07 2014 +0000
- Revision:
- 192:54b758a8eaaa
- Parent:
- 146:8c05a119d9d4
updates to new logger name
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ansond | 105:759dee018363 | 1 | /* Copyright C2013 Doug Anson, MIT License |
ansond | 105:759dee018363 | 2 | * |
ansond | 105:759dee018363 | 3 | * Permission is hereby granted, free of charge, to any person obtaining a copy of this software |
ansond | 105:759dee018363 | 4 | * and associated documentation files the "Software", to deal in the Software without restriction, |
ansond | 105:759dee018363 | 5 | * including without limitation the rights to use, copy, modify, merge, publish, distribute, |
ansond | 105:759dee018363 | 6 | * sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is |
ansond | 105:759dee018363 | 7 | * furnished to do so, subject to the following conditions: |
ansond | 105:759dee018363 | 8 | * |
ansond | 105:759dee018363 | 9 | * The above copyright notice and this permission notice shall be included in all copies or |
ansond | 105:759dee018363 | 10 | * substantial portions of the Software. |
ansond | 105:759dee018363 | 11 | * |
ansond | 105:759dee018363 | 12 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING |
ansond | 105:759dee018363 | 13 | * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
ansond | 105:759dee018363 | 14 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, |
ansond | 105:759dee018363 | 15 | * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
ansond | 105:759dee018363 | 16 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
ansond | 105:759dee018363 | 17 | */ |
ansond | 105:759dee018363 | 18 | |
ansond | 105:759dee018363 | 19 | #ifndef _EXT_LED_LIGHT_H_ |
ansond | 105:759dee018363 | 20 | #define _EXT_LED_LIGHT_H_ |
ansond | 105:759dee018363 | 21 | |
ansond | 105:759dee018363 | 22 | #include "mbed.h" |
ansond | 105:759dee018363 | 23 | #include "Definitions.h" |
ansond | 135:7f3f963cd159 | 24 | #include "BaseClass.h" |
ansond | 105:759dee018363 | 25 | |
ansond | 135:7f3f963cd159 | 26 | class ExternalLEDLight : BaseClass { |
ansond | 105:759dee018363 | 27 | private: |
ansond | 144:e4d24c2c8f18 | 28 | float m_dim; |
ansond | 144:e4d24c2c8f18 | 29 | bool m_dimming; |
ansond | 144:e4d24c2c8f18 | 30 | |
ansond | 144:e4d24c2c8f18 | 31 | protected: |
ansond | 105:759dee018363 | 32 | PwmOut *m_led; |
ansond | 105:759dee018363 | 33 | int m_state; |
ansond | 105:759dee018363 | 34 | |
ansond | 105:759dee018363 | 35 | public: |
ansond | 192:54b758a8eaaa | 36 | ExternalLEDLight(PwmOut *led,Logger *logger); |
ansond | 135:7f3f963cd159 | 37 | virtual ~ExternalLEDLight(); |
ansond | 105:759dee018363 | 38 | |
ansond | 146:8c05a119d9d4 | 39 | virtual void on(); |
ansond | 146:8c05a119d9d4 | 40 | virtual void off(); |
ansond | 146:8c05a119d9d4 | 41 | virtual void dim(int dim); // range: 0 - 100 |
ansond | 144:e4d24c2c8f18 | 42 | |
ansond | 144:e4d24c2c8f18 | 43 | protected: |
ansond | 144:e4d24c2c8f18 | 44 | virtual void update(); |
ansond | 105:759dee018363 | 45 | }; |
ansond | 105:759dee018363 | 46 | |
ansond | 105:759dee018363 | 47 | #endif // _EXT_LED_LIGHT_H_ |