32 lines
456 B
C
32 lines
456 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 "uart.h"
|
|
#include <stdbool.h>
|
|
#include <float.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <math.h>
|
|
int fan_speed(float value);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* FANSEEEED_H */
|
|
|