Color sensor reset at the end of calibration added. sensor id auto assignment was changed to be a fixed value assignment to avoid sensor id shift when some sensor is absent.

Dependencies:   UniGraphic mbed vt100

edge_utils/edge_chart.h

Committer:
Rhyme
Date:
2018-02-23
Revision:
0:ce97f6d34336

File content as of revision 0:ce97f6d34336:

#ifndef _EDGE_CHART_H_
#define _EDGE_CHART_H_
#include "mbed.h"

typedef struct _edge_chart_st {
    char *name ;
    int left ;
    int top ;
    int width ;
    int height ;
    int index ;
    float min ;
    float max ;
} edge_chart_type ;

extern edge_chart_type edge_chart[] ;

void draw_chart_frame(edge_chart_type *p) ;
void draw_all_chart_frame(void) ;


#endif /* _EDGE_CHART_H_ */