Demonstrates the usage of the GPIO API.
#include <bcm2835.h>
#include <stdio.h>
#include "Utilities.h"
int main(
int argc,
char **argv)
{
if (!bcm2835_init())
{
printf("BCM libray error.\n");
}
printf("Blinking LED demo with the Sensorian Shield.\r\n");
while (1)
{
}
bcm2835_close();
return 0;
}