Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
HeartBeat.h@3:654a22520c76, 2012-11-30 (annotated)
- Committer:
- mbj898
- Date:
- Fri Nov 30 13:38:12 2012 +0000
- Revision:
- 3:654a22520c76
- Parent:
- 2:fc8dbf3231ee
final
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbj898 | 1:c102c32513b2 | 1 | #include "mbed.h" |
| mbj898 | 1:c102c32513b2 | 2 | |
| mbj898 | 1:c102c32513b2 | 3 | class HeartBeat |
| mbj898 | 1:c102c32513b2 | 4 | { |
| mbj898 | 1:c102c32513b2 | 5 | |
| mbj898 | 1:c102c32513b2 | 6 | public: |
| mbj898 | 1:c102c32513b2 | 7 | //object creator method, call this to initialize a heartbeat object |
| mbj898 | 3:654a22520c76 | 8 | HeartBeat(PinName pwm); |
| mbj898 | 3:654a22520c76 | 9 | |
| mbj898 | 2:fc8dbf3231ee | 10 | void pwmIt(float frequency); |
| mbj898 | 1:c102c32513b2 | 11 | |
| mbj898 | 1:c102c32513b2 | 12 | private: |
| mbj898 | 2:fc8dbf3231ee | 13 | PwmOut pwmObject; |
| mbj898 | 2:fc8dbf3231ee | 14 | |
| mbj898 | 1:c102c32513b2 | 15 | }; |
