2024-03-13 12:39:35 +00:00
|
|
|
/*
|
|
|
|
|
* File: fanseeeed.h
|
|
|
|
|
* Author: inami
|
|
|
|
|
*
|
|
|
|
|
* Created on 13. mars 2024, 13:38
|
|
|
|
|
*/
|
2024-03-13 12:58:14 +00:00
|
|
|
#include "uart.h"
|
|
|
|
|
#include "voltage.h"
|
2024-03-13 12:39:35 +00:00
|
|
|
|
|
|
|
|
#ifndef FANSEEEED_H
|
|
|
|
|
#define FANSEEEED_H
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2024-03-13 12:58:14 +00:00
|
|
|
int speed(uint16_t adcVal);
|
2024-03-13 12:39:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* FANSEEEED_H */
|
|
|
|
|
|