2016-10-25 17:14:58 +02:00
|
|
|
/*
|
|
|
|
* inverter.h
|
|
|
|
*
|
|
|
|
* Created on: 25.10.2016
|
|
|
|
* Author: dehottgw
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef INVERTER_H_
|
|
|
|
#define INVERTER_H_
|
|
|
|
|
|
|
|
|
2016-10-27 13:28:55 +02:00
|
|
|
typedef enum { CLOCKWISE, COUNTERCLOCKWISE } direction_t;
|
|
|
|
|
2016-10-26 17:18:54 +02:00
|
|
|
void inverterBegin();
|
2016-11-10 11:47:28 +01:00
|
|
|
void inverterStart(direction_t direction);
|
2016-10-27 13:28:55 +02:00
|
|
|
void inverterStop();
|
2016-11-10 11:47:28 +01:00
|
|
|
void inverterIncFrequency();
|
|
|
|
void inverterDecFrequency();
|
2016-10-25 17:14:58 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif /* INVERTER_H_ */
|