|
|
|
![]() |
|
|||||||
|
||||||||
|
|
Thread Tools | Rate Thread | Display Modes |
|
#3
|
|||
|
|||
|
Thanks Mike,
I'm using Visual Studio 2005 on Windows XP. The code is written in C#, but I also have tried with the GUI that the camera brought in Java and the servos didn't work either... Here is the code I used: // Set the COM1 serial port SerialPort port = new SerialPort("COM1", 115200, Parity.None, 8, StopBits.One); // Infinite ReadTime Out (default) port.ReadBufferSize = 100000; // Size of the buffer: 100000 bytes port.Open(); port.DiscardInBuffer(); // To empty the buffer /* PART 1*/ port.Write("\r"); // Send command \r while (((char)port.ReadByte()).Equals(':') == false) ; // ':' received /* PART 2*/ port.Write("SV 0 130\r"); // Send command SV to servo 0 at position 130 while (((char)port.ReadByte()).Equals(':') == false) ; // ':' received And for these two commands I received ACK....but the servos don't move!!! Any tip...would be great. Thanks again, Javier. |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| What Artist Influence You? | Koko Ed | Chit-Chat | 12 | 01-12-2006 11:33 |
| Springs and Work | sanddrag | Math and Science | 11 | 17-05-2005 18:35 |
| Seeing First Work | D@ve | General Forum | 2 | 15-04-2005 19:03 |
| What Hours do you work? | Ryan Albright | Chit-Chat | 2 | 14-03-2005 15:46 |
| How do the servos work? | tml240 | Motors | 25 | 18-02-2004 07:47 |