What programming language would you recommend if I'm trying to accumulate data from a serial device? An example is a weather station which outputs temperature, humidity, and etc in every set time interval. I'm thinking of graphing it. (e.g. temperature vs. time).

link|improve this question
1  
Programming language is much less important than the environment here: pure Windows, .net, Java, Linux, embedded ? – fvu Sep 20 '11 at 17:43
feedback

closed as not constructive by Wooble, Michael Petrotta, Bart Kiers, Paul R, Mat Sep 20 '11 at 21:34

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

This question is a bit subjective - there are many languages to choose from that would allow you to do this... Normally I wouldn't answer such a subjective question but in the spirit of being helpful...

If this is on a Windows machine, then the .NET Framework comes with a SerialPort class that makes working with serial ports a lot easier than other languages I've worked with.
Admittedly, my experience with other languages is limited...

Even in the .NET Framework, you have your choice of several languages to use (C# and VB.NET being the most popular and best-documented, of course).

What you use will ultimately be a matter of preference, but that would be my personal choice.

link|improve this answer
Thanks for your suggestion, really helps. :D But I have a question, does .NET comes with a database? Sorry, I'm actually new to this field... – user955318 Sep 20 '11 at 18:07
With .NET, you can connect to just about any database. Since you're really new, I'd recommend starting out at windowsclient.net or asp.net and watching some videos (particularly data Access) to see what's going to be involved. It won't teach you Serial Port communicaitons, but you need the groundwork before you go any further, and the videos;/training available at those sites are very comprehensive. – David Stratton Sep 20 '11 at 18:14
feedback

The language that seems most interesting to you, or that you already know.

There are only a few popular languages that wouldn't allow you to achieve your goal and none of them will be overly complicated. In all cases, you'll have a lot of learning to do on the way, so just make sure you choose a language that you'll enjoy working with.

Popular choices right now would probably be: C#, VB.NET, Java, Python, or C++.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.