mikrokontrollersystemer-pro.../prosjekt.X/fan_speeeed.h
2024-04-25 14:06:51 +02:00

38 lines
607 B
C

/*
* File: fanseeeed.h
* Author: inami
*
* Created on 13. mars 2024, 13:38
*/
#ifndef FANSEEEED_H
#define FANSEEEED_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdbool.h>
#include <float.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <math.h>
#include <avr/interrupt.h>
#include <avr/io.h>
#include <avr/cpufunc.h>
void init_TCA0();
void TCA0_update_period_ms ();
uint16_t RPM_calculation(uint16_t test, uint16_t time);
void init_ac0();
#ifdef __cplusplus
}
#endif
#endif /* FANSEEEED_H */