2024-03-13 12:39:35 +00:00
|
|
|
/*
|
|
|
|
|
* File: fanseeeed.h
|
|
|
|
|
* Author: inami
|
|
|
|
|
*
|
|
|
|
|
* Created on 13. mars 2024, 13:38
|
|
|
|
|
*/
|
2024-03-19 11:59:56 +00:00
|
|
|
|
|
|
|
|
|
2024-03-13 12:39:35 +00:00
|
|
|
|
|
|
|
|
#ifndef FANSEEEED_H
|
|
|
|
|
#define FANSEEEED_H
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2024-03-19 12:11:52 +00:00
|
|
|
|
2024-03-19 11:59:56 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
#include <float.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <math.h>
|
|
|
|
|
int fan_speed(float value);
|
2024-03-13 12:39:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* FANSEEEED_H */
|
|
|
|
|
|