![](/media/cache/group/1711.jpg.50x50_q85.jpg)
Gas Pressure Display Updated Power control for Pressure sensor added
Dependencies: UniGraphic mbed vt100
edge_utils/edge_chart.h@0:37c8ecde13c2, 2018-02-16 (annotated)
- Committer:
- Rhyme
- Date:
- Fri Feb 16 08:27:50 2018 +0000
- Revision:
- 0:37c8ecde13c2
control PSE530 power via PTC5 (pse530_en)
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Rhyme | 0:37c8ecde13c2 | 1 | #ifndef _EDGE_CHART_H_ |
Rhyme | 0:37c8ecde13c2 | 2 | #define _EDGE_CHART_H_ |
Rhyme | 0:37c8ecde13c2 | 3 | #include "mbed.h" |
Rhyme | 0:37c8ecde13c2 | 4 | |
Rhyme | 0:37c8ecde13c2 | 5 | typedef struct _edge_chart_st { |
Rhyme | 0:37c8ecde13c2 | 6 | char *name ; |
Rhyme | 0:37c8ecde13c2 | 7 | int left ; |
Rhyme | 0:37c8ecde13c2 | 8 | int top ; |
Rhyme | 0:37c8ecde13c2 | 9 | int width ; |
Rhyme | 0:37c8ecde13c2 | 10 | int height ; |
Rhyme | 0:37c8ecde13c2 | 11 | int index ; |
Rhyme | 0:37c8ecde13c2 | 12 | float min ; |
Rhyme | 0:37c8ecde13c2 | 13 | float max ; |
Rhyme | 0:37c8ecde13c2 | 14 | } edge_chart_type ; |
Rhyme | 0:37c8ecde13c2 | 15 | |
Rhyme | 0:37c8ecde13c2 | 16 | extern edge_chart_type edge_chart[] ; |
Rhyme | 0:37c8ecde13c2 | 17 | |
Rhyme | 0:37c8ecde13c2 | 18 | void draw_chart_frame(edge_chart_type *p) ; |
Rhyme | 0:37c8ecde13c2 | 19 | void draw_all_chart_frame(void) ; |
Rhyme | 0:37c8ecde13c2 | 20 | |
Rhyme | 0:37c8ecde13c2 | 21 | |
Rhyme | 0:37c8ecde13c2 | 22 | #endif /* _EDGE_CHART_H_ */ |