Files
OBD2-car-display/due_obd2/obd2_util.h
2024-01-14 12:54:20 +01:00

13 lines
206 B
C

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