Telescope Control Library

Dependents:   PushToGo-F429

PEC.h

Committer:
caoyu@caoyuan9642-desktop.MIT.EDU
Date:
2018-09-09
Revision:
7:9daa589c92c8
Parent:
6:85b9d9a3903a
Child:
8:21a33760bf10

File content as of revision 7:9daa589c92c8:

/*
 * PEC.h
 *
 *  Created on: Sep 9, 2018
 *      Author: caoyu
 */

#ifndef PUSHTOGO_PEC_H_
#define PUSHTOGO_PEC_H_

class PEC {
public:
	PEC();
	virtual ~PEC();

	bool isEnabled() const {
		return enabled;
	}

	void setEnabled(bool enabled) {
		this->enabled = enabled;
	}

protected:
	bool enabled;
};

#endif /* PUSHTOGO_PEC_H_ */