inverter2/my_src/inverter.h

22 lines
349 B
C
Raw 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(direction_t direction);
void inverterStop();
void inverterIncFrequency();
void inverterDecFrequency();
2016-10-25 17:14:58 +02:00
#endif /* INVERTER_H_ */