inverter2/my_src/inverter.h

20 lines
308 B
C
Raw Permalink Normal View History

2016-10-25 17:14:58 +02:00
/*
* 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();
2016-10-25 17:14:58 +02:00
#endif /* INVERTER_H_ */