20 lines
308 B
C
20 lines
308 B
C
/*
|
|
* inverter.h
|
|
*
|
|
* Created on: 25.10.2016
|
|
* Author: dehottgw
|
|
*/
|
|
|
|
#ifndef INVERTER_H_
|
|
#define INVERTER_H_
|
|
|
|
|
|
typedef enum { CLOCKWISE, COUNTERCLOCKWISE } direction_t;
|
|
|
|
void inverterBegin();
|
|
void inverterStart(uint8_t freqOut, direction_t direction);
|
|
void inverterStop();
|
|
|
|
|
|
#endif /* INVERTER_H_ */
|