main/buttons.h

changeset 101
1bc6e9263ada
parent 87
47253f294a9f
child 111
b5037adae8ab
equal deleted inserted replaced
100:9833fd86736b 101:1bc6e9263ada
104 * @param val The integer data value to show. 104 * @param val The integer data value to show.
105 */ 105 */
106 void ShowInteger(uint16_t x, uint16_t y, char *label, char *suffix, int val); 106 void ShowInteger(uint16_t x, uint16_t y, char *label, char *suffix, int val);
107 107
108 /** 108 /**
109 * @brief Show two integers data field.
110 * @param x The X position on the screen
111 * @param y The Y position on the screen
112 * @param label The field name text
113 * @param suffix Some text after the data value or NULL
114 * @param val The first integer data value to show.
115 * @param val2 The second integer data value to show.
116 */
117 void Show2Integer(uint16_t x, uint16_t y, char *label, char *suffix, int val, int val2);
118
119 /**
109 * @brief Show boolean data field. 120 * @brief Show boolean data field.
110 * @param x The X position on the screen 121 * @param x The X position on the screen
111 * @param y The Y position on the screen 122 * @param y The Y position on the screen
112 * @param label The field name text 123 * @param label The field name text
113 * @param val The bolean value, displays 'J' or 'N' 124 * @param val The bolean value, displays 'J' or 'N'

mercurial