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.
Fork of ele350 by
sawtooth_app.h
- Committer:
- GGHHHH
- Date:
- 2015-12-03
- Revision:
- 21:2c830747ec82
- Child:
- 24:f78b7e24981c
File content as of revision 21:2c830747ec82:
#ifndef _SAWTOOTH_APP_H_
#define _SAWTOOTH_APP_H_
#include "app.h"
#include "mbed.h"
class SawtoothApp : public App
{
protected:
AnalogOut* analogOut;
Timer timer;
public:
SawtoothApp(Serial* serialPort);
void start();
void run();
void stop();
};
#endif
