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.
sirena.h
- Committer:
- shrzenjak
- Date:
- 2021-02-18
- Revision:
- 0:07997c7eb70b
File content as of revision 0:07997c7eb70b:
#ifndef MBED_sirena_H #define MBED_sirena_H #include "mbed.h" namespace mbed { class sirena { //koristi pwm za generiranje zvuka na Buzzeru public: sirena (PinName pin); // povezivanje Zvuk objekta sa pinom na mikrokontroleru void beep (float frequency, float time); //zvučni signal sa zadanim trajanjem i frekvencijom void nobeep(); //ugasi Buzzer private : PwmOut _pwm; Timeout toff; }; } #endif