add struct for sensors, add sketch.h

This commit is contained in:
Harald Pichler 2015-10-11 15:22:49 +02:00
parent 0a4938243e
commit e8471445ed
3 changed files with 166 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#ifndef Sketch_h
#define Sketch_h
struct dstemp{
float ftemp;
char stemp[8];
};
extern struct dstemp ds1820[7];
#endif