VNG bot battle

Dependencies:   BLE_API mbed nRF51822

Buzzer.h

Committer:
bintech91
Date:
2016-09-05
Revision:
0:122d7bf3bbf0

File content as of revision 0:122d7bf3bbf0:

/*
 * Buzzer.h
 *
 *  Created on: Aug 23, 2016
 *      Author: tanpt
 */

#ifndef BUZZER_H_
#define BUZZER_H_

#include "common.h"

class Buzzer {

public:
    Buzzer();
    ~Buzzer();

    void turnOn();

    void turnOff();

private:
    static DigitalOut  buzzer_;
};


#endif /* BUZZER_H_ */