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).
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.
|
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. 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. | |||||
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++. | |||
|
feedback
|