porklib: Simple library for programming Arduino in C
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#pragma once
|
|
|
|
// Pin config file for LCD.
|
|
|
|
#include "lib/arduino_pins.h"
|
|
|
|
#define LCD_RS D2
|
|
#define LCD_RW D3
|
|
#define LCD_E D4
|
|
#define LCD_D4 D5
|
|
#define LCD_D5 D6
|
|
#define LCD_D6 D7
|
|
#define LCD_D7 D8
|
|
|