dd

Dependencies:   BufferedSerial FastAnalogIn FastPWM mbed SHT75

peltiert.h

Committer:
sbh9428
Date:
2016-02-19
Revision:
0:9bfc4aea91e2

File content as of revision 0:9bfc4aea91e2:

/*
 * peltiert.h
 *
 *  Created on: 2016. 2. 19.
 *      Author: sbh9428
 */

#ifndef PELTIERT_H_
#define PELTIERT_H_

#include "FastPWM.h"

class peltier_t {
public:
	void set_PWM(float duty_ratio);
	
	peltier_t();
	peltier_t(FastPWM* _peltier_pin, DigitalOut* _direction_pin);
	virtual ~peltier_t();
private:
	FastPWM* peltier_pin;
	DigitalOut* direction_pin;
};

#endif /* PELTIERT_H_ */