Created Wednesday 11 January 2017
Interacting with GPIOs within a C / C++ program:
Using a your favorite editor (I recommend "Geany", already installed on Raspberry Pi),
enter the following C / C++ program:
View Example in another window
// File: gpiotest1.cpp
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#define GPIO_DIRECTORY "/sys/class/gpio"
#define GPIO_EXPORT "/sys/class/gpio/export"
#define GPIO_UNEXPORT "/sys/class/gpio/unexport"
#define GREENLED 87 // GPIO value for the green LED
#define DIRECTION_INPUT 0
#define DIRECTION_OUTPUT 1
void msleep(int imsleepy)
{
// Return negative value for error, non-negative value for success
int exportGpio(int gpio)
{
// Before we continue, let's see if the GPIO is already exported
struct stat exportstat;
sprintf(buf,"%s/gpio%d",GPIO_DIRECTORY,gpio);
if(!stat(buf,&exportstat)) {
return 0; // already exported, return 0
if(fd < 0) {
return -1;
// Writing to the open file descriptor, export the GPIO
// Return value is number of bytes written
sprintf(buf,"%d",gpio);
int bytesWritten = write(fd,buf,strlen(buf));
//printf("%s: Wrote %d bytes to %s\n",__FUNCTION__,bytesWritten,GPIO_EXPORT);
close(fd);
return bytesWritten;
// Return negative value for error, non-negative value for success
// Use 0: for input, non-zero for output
int setGpioDirection(int gpio,int direction)
{
int bytesWritten;
sprintf(buf,"%s/gpio%d/direction",GPIO_DIRECTORY,gpio);
int fd = open(buf,O_RDWR); // Request access to gpio's "direction" file
if(fd < 0) {
return -1;
// Send the appropriate string to the direction "file"
if(direction == DIRECTION_INPUT)
close(fd);
return bytesWritten;
// Return negative value for error, non-negative value for success
// LOW: 0, HIGH: 1
int setGpioValue(int gpio,int value)
{
int bytesWritten;
sprintf(buf,"%s/gpio%d/value",GPIO_DIRECTORY,gpio);
int fd = open(buf,O_RDWR); // Request access to gpio's "value" file
if(fd < 0) {
return -1;
// Send the appropriate string to the value "file"
if(value == 0)
close(fd);
return bytesWritten;
// Return negative value for error, non-negative value for success
int unexportGpio(int gpio)
{
int fd = open(GPIO_UNEXPORT,O_WRONLY); // Request write only access to "export" file
if(fd < 0) {
return -1;
// Writing to the open file descriptor, export the GPIO
// Return value is number of bytes written
sprintf(buf,"%d",gpio);
int bytesWritten = write(fd,buf,strlen(buf));
//printf("%s: Wrote %d bytes to %s\n",__FUNCTION__,bytesWritten,GPIO_UNEXPORT);
close(fd);
return bytesWritten;
int main(int argc, char * argv[])
{
exportGpio(GREENLED);
setGpioDirection(GREENLED,DIRECTION_OUTPUT);
sprintf(buf,"%s/gpio%d/value",GPIO_DIRECTORY,GREENLED);
int fd = open(buf,O_RDWR); // Request access to gpio's "value" file
if(fd < 0) {
return -1;
// Flash the LED 20 times
for(int i=0;i<20;i++)
{
msleep(200);
write(fd,"0",1); // Lower gpio
msleep(200);
unexportGpio(GREENLED);
close(fd);
return 0;
Compile and link the above program, using gcc:
$ gcc -o gpiotest1 gpiotest1.cpp