para el ventilador

Dependencies:   QEI FastPWM

Revision:
11:5cb7ae8bd831
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/filters.h	Thu May 07 03:52:31 2020 +0000
@@ -0,0 +1,14 @@
+#ifndef FILTERS_H_
+#define FILTERS_H_
+
+/* Function declaration */
+float RC_LPF_01(float raw_value, uint8_t restart);
+float RC_HPF_01(float raw_value, uint8_t restart);
+float RC_LPF_02(float raw_value, uint8_t restart);
+
+float Pressure_01_Cheby2_LPF(float raw_value, uint8_t restart);
+float Pressure_02_Cheby2_LPF(float raw_value, uint8_t restart);
+float Flow_Cheby2_HPF(float raw_value, uint8_t restart);
+float Flow_FIR_LPF(float raw_value, uint8_t restart);
+
+#endif
\ No newline at end of file