Files
OBD2-car-display/due_obd2/obd2_util.h
Sem van der Hoeven e08b84c102 Add intro animation
2023-11-26 22:57:19 +01:00

11 lines
161 B
C

#ifndef OBD2_UTIL_H
#define OBD2_UTIL_H
#include <math.h>
float logo_step(float x)
{
return (float)(25 / (0.2 + exp((double)((-0.08 * x) + 3))));
}
#endif