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.
Dependencies: mbed Queue mbed-rtos FXOS8700Q
Fork of Pacemaker by
hardware.h@36:b6431cd8ecd6, 2016-12-18 (annotated)
- Committer:
- noahzwiep
- Date:
- Sun Dec 18 02:29:59 2016 +0000
- Revision:
- 36:b6431cd8ecd6
- Parent:
- 16:08d5e5a3ee74
All ogre.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| FiveDollar | 0:b2b3955cd77b | 1 | #pragma once |
| FiveDollar | 0:b2b3955cd77b | 2 | #include "mbed.h" |
| FiveDollar | 0:b2b3955cd77b | 3 | |
| FiveDollar | 0:b2b3955cd77b | 4 | class hardware{ |
| FiveDollar | 0:b2b3955cd77b | 5 | public: |
| FiveDollar | 0:b2b3955cd77b | 6 | hardware(); |
| FiveDollar | 0:b2b3955cd77b | 7 | ~hardware(); |
| FiveDollar | 0:b2b3955cd77b | 8 | Serial* getSerial(); |
| FiveDollar | 2:fbba2687ddfe | 9 | PwmOut* getChamber(char); |
| noahzwiep | 16:08d5e5a3ee74 | 10 | double getSense(); |
| FiveDollar | 0:b2b3955cd77b | 11 | |
| FiveDollar | 0:b2b3955cd77b | 12 | private: |
| FiveDollar | 2:fbba2687ddfe | 13 | PwmOut atrium; |
| FiveDollar | 2:fbba2687ddfe | 14 | PwmOut ventricle; |
| FiveDollar | 0:b2b3955cd77b | 15 | Serial pc; |
| noahzwiep | 16:08d5e5a3ee74 | 16 | AnalogIn sense; |
| FiveDollar | 0:b2b3955cd77b | 17 | }; |
