19 lines
253 B
C
19 lines
253 B
C
#include<stdio.h>
|
|
#include<fctnl.h>
|
|
#include<string.h>
|
|
#include<unistd.h>
|
|
|
|
#define BASEPATH "/sys/class/gpio/"
|
|
#define GPIO_FOLDER "gpio%s/"
|
|
|
|
#define PIN_IN1 "6"
|
|
#define PIN_IN2 "13"
|
|
#define PIN_IN3 "19"
|
|
#define PIN_IN4 "26"
|
|
|
|
int main()
|
|
{
|
|
|
|
return 0;
|
|
}
|