UNO+Ethernet Shield -----> PC(delphi)

Dear,
I'm just start with Arduino and please there is reference/example for send data from uno via Enternet Shield to PC with delphi GUI program. This application applicable is for the telemetering.

any information is very helpfull

rgds

Fatchur

I'm just start with Arduino and please there is reference/example for send data from uno via Enternet Shield to PC with delphi GUI program. This application applicable is for the telemetering.

The Arduino can act as a client, making requests of a server. Or, it can act as a server, satisfying demands of clients.

What else the server is doing is irrelevant.

Is the "PC with delphi GUI program" acting as a web server, too? If so, the Arduino can act as client, making GET requests to that server.

If not, the Arduino can act as server, and the delphi GUI program can make GET requests to the Arduino-as-server for data.

If the PC delphi GUI is running a telnet server then the arduino with ethernet shield could connect and supply data to the delphi application.

Thx for your information, there is some one have the sample of the script, i am very poor in the networking

there is some one have the sample of the script

I'm sure there is.

i am very poor in the networking

You are also, unfortunately, poor in the answering questions.

We can't help you with the networking and/or the coding unless we know what you want to do.

Dear,

for the example :

assume 1st analoq input arduino uno has value 123 , then I want to displayed that value on PC with Delphi programing via Ethernet shield.

pls show me example code for case above for the arduino and delphi side.

thx for the help.

regard..

The Ethernet as server example already get analog values and sends them to clients. Is there some reason not to use that as a starting point?

Point your browser at the Arduino as server and look at the response. Alter the code on the Arduino as required to get meaningful data in the browser.

Pay attention to the GET requests that the browser makes, as seen in the Serial Monitor.

Then, write a program in delphi that makes the same requests, and parses the web page for the information it wants. And, no this isn't the homework hotline. YOU are expected to make some effort.