main/buttons.h

changeset 101
1bc6e9263ada
parent 87
47253f294a9f
child 111
b5037adae8ab
--- a/main/buttons.h	Thu Jun 17 13:58:13 2021 +0200
+++ b/main/buttons.h	Sat Jun 19 20:46:42 2021 +0200
@@ -106,6 +106,17 @@
 void ShowInteger(uint16_t x, uint16_t y, char *label, char *suffix, int val);
 
 /**
+ * @brief Show two integers data field.
+ * @param x The X position on the screen
+ * @param y The Y position on the screen
+ * @param label The field name text
+ * @param suffix Some text after the data value or NULL
+ * @param val The first integer data value to show.
+ * @param val2 The second integer data value to show.
+ */
+void Show2Integer(uint16_t x, uint16_t y, char *label, char *suffix, int val, int val2);
+
+/**
  * @brief Show boolean data field.
  * @param x The X position on the screen
  * @param y The Y position on the screen

mercurial