15 lines
295 B
C
15 lines
295 B
C
|
#include <wiringPi.h>
|
||
|
#include <piFace.h>
|
||
|
#include <wiring_debug.h>
|
||
|
|
||
|
#include <drivers.h>
|
||
|
|
||
|
void
|
||
|
driver_piface_set(int pin, int value)
|
||
|
{
|
||
|
// disable "unused parameter" warning (happens when using wiring_debug)
|
||
|
(void)pin;
|
||
|
(void)value;
|
||
|
digitalWrite(PIFACE_GPIO_BASE + pin, value);
|
||
|
}
|