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.
nikita.h@0:7f86087ff2c9, 2016-12-01 (annotated)
- Committer:
- nikita14
- Date:
- Thu Dec 01 05:34:34 2016 +0000
- Revision:
- 0:7f86087ff2c9
libraryfile
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nikita14 | 0:7f86087ff2c9 | 1 | #ifndef MBED_buzz_H |
nikita14 | 0:7f86087ff2c9 | 2 | #define MBED_buzz_H |
nikita14 | 0:7f86087ff2c9 | 3 | |
nikita14 | 0:7f86087ff2c9 | 4 | #include "mbed.h" |
nikita14 | 0:7f86087ff2c9 | 5 | |
nikita14 | 0:7f86087ff2c9 | 6 | class buzz { |
nikita14 | 0:7f86087ff2c9 | 7 | public: |
nikita14 | 0:7f86087ff2c9 | 8 | buzzer(PinName pin); |
nikita14 | 0:7f86087ff2c9 | 9 | void flash(int n); |
nikita14 | 0:7f86087ff2c9 | 10 | |
nikita14 | 0:7f86087ff2c9 | 11 | private: |
nikita14 | 0:7f86087ff2c9 | 12 | DigitalOut _pin; |
nikita14 | 0:7f86087ff2c9 | 13 | }; |
nikita14 | 0:7f86087ff2c9 | 14 | |
nikita14 | 0:7f86087ff2c9 | 15 | #endif |