You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
375 B
18 lines
375 B
|
|
#include <stdint.h>
|
|
|
|
void filter_average_input(uint8_t channel, float value);
|
|
|
|
uint8_t filter_average_done(uint8_t channel, uint8_t samples);
|
|
|
|
float filter_average_temp_result(uint8_t channel);
|
|
|
|
float filter_average_result(uint8_t channel);
|
|
|
|
float filter_average_noise(uint8_t channel);
|
|
|
|
uint16_t filter_float_to_decimal8(float f);
|
|
|
|
float filter_voltage_to_temp(float mV);
|
|
|