7 lines
208 B
C
7 lines
208 B
C
#ifdef WIRING_PI_DEBUG
|
|
|
|
#define wiringPiSetup() printf("Setting up wiringPi....\n")
|
|
#define pinMode(x,y) printf("pinMode(%d, %d)\n",x,y)
|
|
#define digitalWrite(x,y) printf("digitalWrite(%d, %d)\n",x,y)
|
|
|
|
#endif
|