JIAWEI ZHANG / Mbed 2 deprecated ele350ku

Dependencies:   mbed

Dependents:   Exercise8_1-2-3

Fork of ele350 by JIAWEI ZHANG

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