Subject:
|
servo program
|
Newsgroups:
|
lugnet.robotics.handyboard
|
Date:
|
Mon, 29 Nov 1999 17:03:17 GMT
|
Original-From:
|
T.C. <dab8rs_85@^spamcake^yahoo.com>
|
Viewed:
|
957 times
|
| |
| |
Can anyone please write me a brief servo motor program
that will control two servos from the expansion board?
This the one I had to control one, but did not work:
void main(void)
{
while(1)
{
init_expbd_servos(1)
servo0 = 1000
}
return(0);
}
__________________________________________________
Do You Yahoo!?
Thousands of Stores. Millions of Products. All in one place.
Yahoo! Shopping: http://shopping.yahoo.com
|
|
Message has 2 Replies: | | Re: servo program
|
| Dear ?: First off, your program contains an infinite loop; statement return(0); will never be reached. Also you told it that main does not return a value, yet you used e return in the end. This will generate a compiler error for sure. I belief the (...) (25 years ago, 29-Nov-99, to lugnet.robotics.handyboard)
| | | Re: servo program
|
| Here's a simple program that will make a servo move as the knob on the Handyboard is turned: int i; void main() { init_expbd_servos(1); while(1) { i= knob(); i = (i*10)+1000; printf("val %d\n",i); msleep(20L); servo0 = i; } } (...) (25 years ago, 29-Nov-99, to lugnet.robotics.handyboard)
|
3 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|