.
Dependents: Konstrukcijski_Blazevic kontrola_ulaza_IF
Ledica.h
- Committer:
- ifluka
- Date:
- 2021-05-07
- Revision:
- 1:aa26b9c6dc15
- Parent:
- 0:b3bc716e5bea
File content as of revision 1:aa26b9c6dc15:
#ifndef ledica_h #define ledica_h #include "mbed.h" class Indicator{ public: Indicator(PinName light); void light_on(int t, int v, int n); private: DigitalOut light; }; #endif