.

Dependencies:   L432KC_SPI_Pey_Lal

toolbox.hpp

Committer:
voltxd
Date:
2022-05-18
Revision:
115:156b8234f2de
Parent:
114:c1f7be27aa5d

File content as of revision 115:156b8234f2de:

#ifndef TOOLBOX_HPP
#define TOOLBOX_HPP

#define PI 3.14159265358979323846

double limitToInterval(double value, double min, double max);
float convertBytesToFloat(char *array, char startIndex);
void convertFloatToBytes(float *f, char *array, char startIndex);

#endif