mikrokontrollersystemer-pro.../prosjekt.X/fan speeeed.h
2024-03-20 14:36:58 +01:00

36 lines
553 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>
int RTC_init();
int read_array_get_RPM(int voltage_value);
inline void put_in_array();
#ifdef __cplusplus
}
#endif
#endif /* FANSEEEED_H */