add lookup table

This commit is contained in:
Harald Pichler 2016-01-24 21:30:35 +01:00
parent 44d4f855c6
commit 535194bcb4
9 changed files with 3308 additions and 2 deletions

View file

@ -0,0 +1,15 @@
#ifndef 1_h_
#define 1_h_
#include <avr/pgmspace.h>
#include <inttypes.h>
/**
* autogenerated lookup function for MyFavoriteSensor
* @param i x value
* @return f(i), or 6666 if i is out of range
*/
uint16_t lookup_MyFavoriteSensor(uint16_t i);
#endif /* 1_h_ */