LIB Test
SPS.h
- Committer:
- rs27
- Date:
- 2016-04-17
- Revision:
- 1:be96d2db8c03
- Parent:
- 0:bacf7305d459
File content as of revision 1:be96d2db8c03:
#ifndef SPS_H #define SPS_H #include "mbed.h" class SPS { public: SPS(PinName pin); void flash(int n); private: DigitalOut _pin; }; #endif