More work on PWM and added utility function to map values.

This commit is contained in:
Marvin Blum
2017-03-27 17:13:05 +02:00
parent bc2c6da436
commit 48d96d5b7d
7 changed files with 58 additions and 21 deletions

6
ard/util.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef ARD_UTIL_H_
#define ARD_UTIL_H_
float map(float, float, float, float, float);
#endif