Browse Source

HSA_LCD_Shield.h: Definitions of functions complete

Tobias Müller 6 years ago
parent
commit
7015ed08b8
1 changed files with 46 additions and 0 deletions
  1. 46 0
      HSA_LCD_Shield.h

+ 46 - 0
HSA_LCD_Shield.h

@@ -348,9 +348,55 @@ void controlLed(char ledPin, bool state);
  */
 char getButton();
 
+////////////////////                Write Row 1             ////////////////////
+
+/**
+ * @brief Write words in the first row.
+ * 
+ * @param bytes Array of bytes, which should be written to the first row.
+ */
+void writeRow1(char* bytes);
+
+////////////////////                Write Row 2             ////////////////////
+
+/**
+ * @brief Write words in the second row.
+ * 
+ * @param bytes Array of bytes, which should be written to the second row.
+ */
+void writeRow2(char* bytes);
+
+////////////////////                Write Row 3             ////////////////////
+
+/**
+ * @brief Write words in the third row.
+ * 
+ * @param bytes Array of bytes, which should be written to the third row.
+ */
+void writeRow3(char* bytes);
+
+////////////////////                Write Row 4             ////////////////////
+
+/**
+ * @brief Write words in the fourth row.
+ * 
+ * @param bytes Array of bytes, which should be written to the fourth row.
+ */
+void writeRow4(char* bytes);
+
+////////////////////                Write 4 Rows            ////////////////////
+
+/**
+ * @brief Write words to all four rows.
+ * 
+ * @param bytes Array of bytes, which should be written to the four rows.
+ */
+void write4Rows(char* bytes);
+
 ////////////////////////////////////////////////////////////////////////////////
 ////////////////////             close Header               ////////////////////
 ////////////////////////////////////////////////////////////////////////////////
 
 };
+
 #endif