Maker Pro
Maker Pro

doubt regarding sending data from arduino duemilanove board to internet

bobdxcool

Mar 9, 2012
98
Joined
Mar 9, 2012
Messages
98
Hello guys,I have interfaced a sensor to the arduino board ,and the values from that sensor are displayed on a serial monitor.

Now my question ,how to send data from the serial monitor to the internet ???or how to send the values from the serial monitor continously to an application like ms word,ms excel or notepad or wordpad??
 

dahhal

Jul 17, 2012
58
Joined
Jul 17, 2012
Messages
58
Sensor Tx Serial -> Serial rx Arduino -> Arduino Tx Ethernet

When you say you have an interface? Have you connected the Tx of the sensor to the Rx Arduino serial in hardware or also have code?

Has your Ardunio got Ethernet? Or USB? Or both. Ethernet (LAN or WLAN) would be best if you would like to Operate with pc off.

If no Ethernet though USB it may be possible to connect to the pc using the sttandard keyboard protocol. If windows thinks it is a keyboard then what ever is being sent by the sensor can be typed. This will only work well if the application has alway focus when sensor is sending data. If this is not desirable you could try to create custom USB driver in c# so that application can work in background as a service, and not put text from the sensor in chat windows :)
 
Top