mirror of
https://github.com/clockworkpi/WiringPi.git
synced 2025-12-12 16:08:49 +01:00
delayMicrosecondsHard re-written - again. Added a serialRead example program, and added in the okLed to the examples too. Updated/checked some of the GPIO/PWM code. Added in some experimental servo and tone generating code and and example or 2. Tweaks to the gpio command to correctly load the I2C modules too.
34 lines
542 B
C
34 lines
542 B
C
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
|
|
#include <wiringPi.h>
|
|
#include <softServo.h>
|
|
|
|
int main ()
|
|
{
|
|
if (wiringPiSetup () == -1)
|
|
{
|
|
fprintf (stdout, "oops: %s\n", strerror (errno)) ;
|
|
return 1 ;
|
|
}
|
|
|
|
softServoSetup (0, 1, 2, 3, 4, 5, 6, 7) ;
|
|
|
|
softServoWrite (0, 0) ;
|
|
/*
|
|
softServoWrite (1, 1000) ;
|
|
softServoWrite (2, 1100) ;
|
|
softServoWrite (3, 1200) ;
|
|
softServoWrite (4, 1300) ;
|
|
softServoWrite (5, 1400) ;
|
|
softServoWrite (6, 1500) ;
|
|
softServoWrite (7, 2200) ;
|
|
*/
|
|
|
|
for (;;)
|
|
delay (10) ;
|
|
|
|
}
|