DELPHI examples ?

Dear friends,

I would like write an application in DELPHI which send an informations via USB. After that, the ARduino will treat these informations to move motors.

Could someone give me a sample example in DELPHI which use USB interface to send informations ?

NB: Maybe DELPHI is not adapted for this application, so all your example of code (with an example of communication with arduino) are "welcome".

Thank you in advance for your answers

Delphi doesn't have native serial support (at least Delphi 5 that I am using doesn't). You need to either use the Windows API or one of the VCL serial libraries. There is more information on this link Serial I/O (RS232) Using Delphi

Once you can write serial data to the com port that the Arduino USB is connected to you can follow the Arduino examples that show how to process incoming data.

Good luck!