Click here to Skip to main content
15,912,329 members
Home / Discussions / C#
   

C#

 
GeneralRe: Tele-operated robotic arm need help in programming Pin
koool_faysie5-Jul-07 11:06
koool_faysie5-Jul-07 11:06 
GeneralRe: Tele-operated robotic arm need help in programming Pin
Luc Pattyn5-Jul-07 11:29
sitebuilderLuc Pattyn5-Jul-07 11:29 
GeneralRe: Tele-operated robotic arm need help in programming Pin
koool_faysie7-Jul-07 5:53
koool_faysie7-Jul-07 5:53 
GeneralRe: Tele-operated robotic arm need help in programming Pin
Luc Pattyn7-Jul-07 6:05
sitebuilderLuc Pattyn7-Jul-07 6:05 
GeneralRe: Tele-operated robotic arm need help in programming Pin
koool_faysie7-Jul-07 6:09
koool_faysie7-Jul-07 6:09 
GeneralRe: Tele-operated robotic arm need help in programming Pin
Luc Pattyn7-Jul-07 6:21
sitebuilderLuc Pattyn7-Jul-07 6:21 
GeneralRe: Tele-operated robotic arm need help in programming Pin
koool_faysie7-Jul-07 6:34
koool_faysie7-Jul-07 6:34 
GeneralRe: Tele-operated robotic arm need help in programming Pin
Luc Pattyn7-Jul-07 6:57
sitebuilderLuc Pattyn7-Jul-07 6:57 
If your target contains one (or more) servos, you should provide a command to
select the servo and give it a new position.
As explained before you either use textual commands (easier to use and debug,
slightly more difficult to receive and decode) or binary commands.
That's up to you.

The baud rate is not really relevant, except for one thing: you need sufficient
bandwidth to pass all the information in time (you can not send 100 bytes per
second over a serial line that operates at 110 Baud !) If you need to download
(PC-to-target) a lot of data (say a speed ramp-up/ramp-down table) or maybe the
target's code itself, then you might want to use a relatively high baud rate...

Please keep in mind that receiving serial data on PC-side is somewhat tricky
(independent of baud rate): a PC is very busy with a lot of processes and threads,
so it is not always ready to capture incoming data. Therefore I recommend you
limit the target-to-PC communication to a few messages per second, and avoid
them to be time-critical.

This also means that low-level algorithms (such as move until micro switch
gets closed) are best handled by the target in autonomous mode, without
involving the PC (so PC says "move till switch closes", target does whatever
it takes to do that, then target reports "OK, did it, switch now closed".

Hope this helps, and fits the plans you have.

Smile | :)


GeneralRe: Tele-operated robotic arm need help in programming Pin
koool_faysie7-Jul-07 7:12
koool_faysie7-Jul-07 7:12 
QuestionSetting things like TCP/IP Address and Gateway through code. Pin
jbradshaw5-Jul-07 8:13
jbradshaw5-Jul-07 8:13 
AnswerRe: Setting things like TCP/IP Address and Gateway through code. Pin
Bert delaVega5-Jul-07 10:40
Bert delaVega5-Jul-07 10:40 
GeneralRe: Setting things like TCP/IP Address and Gateway through code. Pin
jbradshaw6-Jul-07 4:30
jbradshaw6-Jul-07 4:30 
QuestionTitle of FolderBrowserDialog [modified] Pin
topksharma19825-Jul-07 7:49
topksharma19825-Jul-07 7:49 
AnswerRe: Title of FolderBrowserDialog Pin
led mike5-Jul-07 8:08
led mike5-Jul-07 8:08 
AnswerRe: Title of FolderBrowserDialog Pin
Luc Pattyn5-Jul-07 8:44
sitebuilderLuc Pattyn5-Jul-07 8:44 
AnswerRe: Title of FolderBrowserDialog Pin
Nouman Bhatti5-Jul-07 20:14
Nouman Bhatti5-Jul-07 20:14 
QuestionDefault Dialog Directories Pin
PhilDanger5-Jul-07 6:36
PhilDanger5-Jul-07 6:36 
AnswerRe: Default Dialog Directories Pin
led mike5-Jul-07 6:42
led mike5-Jul-07 6:42 
AnswerRe: Default Dialog Directories Pin
PhilDanger5-Jul-07 6:58
PhilDanger5-Jul-07 6:58 
GeneralRe: Default Dialog Directories Pin
led mike5-Jul-07 7:23
led mike5-Jul-07 7:23 
AnswerRe: Default Dialog Directories Pin
Luc Pattyn5-Jul-07 6:45
sitebuilderLuc Pattyn5-Jul-07 6:45 
QuestionApplication will download with XP but not Vista Pin
bvdahl5-Jul-07 6:28
bvdahl5-Jul-07 6:28 
Questionurgant: crystal report problem Pin
rmedo5-Jul-07 6:09
rmedo5-Jul-07 6:09 
AnswerBad user! Pin
leckey5-Jul-07 10:13
leckey5-Jul-07 10:13 
GeneralRe: Bad user! Pin
Paul Conrad5-Jul-07 14:36
professionalPaul Conrad5-Jul-07 14:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.