30 lines
469 B
C
30 lines
469 B
C
/*
|
|
* GPIO.h
|
|
*
|
|
* Created on: Jun 10, 2018
|
|
* Author: kidsr
|
|
*/
|
|
|
|
#ifndef SRC_GPIO_H_
|
|
#define SRC_GPIO_H_
|
|
|
|
//#include <wiringpi.h>
|
|
|
|
#define PIN_BUTTON_1 0
|
|
#define PIN_BUTTON_2 0
|
|
#define PIN_BUTTON_3 0
|
|
#define PIN_BUTTON_4 0
|
|
#define PIN_BUTTON_5 0
|
|
|
|
#define PIN_ROTENC_1 0
|
|
#define PIN_ROTENC_2 0
|
|
#define PIN_ROTENC_BTN 0
|
|
|
|
#define PIN_AUDIO_CTRL 0
|
|
#define PIN_I2C_CLK 0
|
|
#define PIN_I2C_DATA 0
|
|
#define PIN_SPI_MOSI 0
|
|
#define PIN_SPI_MISO 0
|
|
|
|
#endif /* SRC_GPIO_H_ */
|