JIAWEI ZHANG / Mbed 2 deprecated ele350ku

Dependencies:   mbed

Dependents:   Exercise8_1-2-3

Fork of ele350 by JIAWEI ZHANG

Committer:
GGHHHH
Date:
Thu Dec 03 14:52:09 2015 +0000
Revision:
21:2c830747ec82
Child:
24:f78b7e24981c
ok

Who changed what in which revision?

UserRevisionLine numberNew contents of line
GGHHHH 21:2c830747ec82 1 #ifndef _SAWTOOTH_APP_H_
GGHHHH 21:2c830747ec82 2 #define _SAWTOOTH_APP_H_
GGHHHH 21:2c830747ec82 3 #include "app.h"
GGHHHH 21:2c830747ec82 4 #include "mbed.h"
GGHHHH 21:2c830747ec82 5
GGHHHH 21:2c830747ec82 6 class SawtoothApp : public App
GGHHHH 21:2c830747ec82 7 {
GGHHHH 21:2c830747ec82 8 protected:
GGHHHH 21:2c830747ec82 9 AnalogOut* analogOut;
GGHHHH 21:2c830747ec82 10 Timer timer;
GGHHHH 21:2c830747ec82 11 public:
GGHHHH 21:2c830747ec82 12 SawtoothApp(Serial* serialPort);
GGHHHH 21:2c830747ec82 13 void start();
GGHHHH 21:2c830747ec82 14 void run();
GGHHHH 21:2c830747ec82 15 void stop();
GGHHHH 21:2c830747ec82 16 };
GGHHHH 21:2c830747ec82 17
GGHHHH 21:2c830747ec82 18 #endif