|
@@ -128,18 +128,18 @@ In den folgenden Abschnitten werden Symbole, Objekte und Methoden der Klasse **`
|
|
|
Symbole der Klasse **`HSA_LCD_Shield`** werden hauptsächlich zur besseren Lesbarkeit des Quellcodes und zur Parameterübergabe für Objekte und Methoden verwendet. In diesem Abschnitt werden alle wichtigen Symbole und deren Werte aufgelistet.
|
|
|
|
|
|
Standard LC-Display I²C-Adresse
|
|
|
-```C++
|
|
|
+```c
|
|
|
I2C_ADDRESS 0x32
|
|
|
```
|
|
|
|
|
|
LCD-Shield Versionen
|
|
|
-```C++
|
|
|
+```c
|
|
|
LCD_VERSION_5 0x05
|
|
|
LCD_VERSION_6 0x06
|
|
|
```
|
|
|
|
|
|
LCD-Shield Konfigurationen
|
|
|
-```C++
|
|
|
+```c
|
|
|
CONFIG_L1B1 "L1B1" // Config: LEDs = On, Buttons = On
|
|
|
CONFIG_L0B1 "L0B1" // Config: LEDs = Off, Buttons = On
|
|
|
CONFIG_L1B0 "L1B0" // Config: LEDs = On, Buttons = Off
|
|
@@ -147,7 +147,7 @@ CONFIG_L0B0 "L0B0" // Config: LEDs = Off, Buttons = Off
|
|
|
```
|
|
|
|
|
|
Taster
|
|
|
-```C++
|
|
|
+```c
|
|
|
BUTTON_UP 0x01
|
|
|
BUTTON_RIGHT 0x02
|
|
|
BUTTON_DOWN 0x03
|
|
@@ -155,7 +155,7 @@ BUTTON_LEFT 0x04
|
|
|
```
|
|
|
|
|
|
LEDs
|
|
|
-```C++
|
|
|
+```c
|
|
|
LED_RED 0x05
|
|
|
LED_GREEN 0x06
|
|
|
```
|