Blame view

RIOT/tests/driver_hd44780/hd44780_params.h 1.1 KB
a752c7ab   elopes   add first test an...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
  /*
   * Copyright (C) 2017 HAW Hamburg
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  /**
   * @ingroup     drivers_hd44780
   *
   * @{
   * @file
   * @brief       Pinout config for the HD44780 display
   *
   * @author      Sebastian Meiling <s@mlng.net>
   */
  #ifndef HD44780_PARAMS_H
  #define HD44780_PARAMS_H
  
  #include "board.h"
  #include "periph/gpio.h"
  
  #include "hd44780.h"
  
  #ifdef __cplusplus
  extern "C"
  {
  #endif
  
  #define HD44780_PARAMS_ARDUINO {    \
      .cols   = 16,                   \
      .rows   = 2,                    \
      .rs     = ARDUINO_PIN_2,        \
      .rw     = HD44780_RW_OFF,       \
      .enable = ARDUINO_PIN_3,        \
      .data   = {ARDUINO_PIN_4, ARDUINO_PIN_5, ARDUINO_PIN_6, ARDUINO_PIN_7,     \
                 HD44780_RW_OFF, HD44780_RW_OFF, HD44780_RW_OFF, HD44780_RW_OFF} \
  }
  
  /**
   * @brief   LCM1602C configuration
   */
  static const hd44780_params_t hd44780_params[] =
  {
      HD44780_PARAMS_ARDUINO,
  };
  
  #ifdef __cplusplus
  }
  #endif
  
  #endif /* HD44780_PARAMS_H */
  /** @} */