I am making a temperature circuit with arduino. is there any way to plot the value of the temperature in a graph using arduino? thank you very much in advance
-
Yes, there are many many ways of doing it. What kind of graph do you want, and where do you want to display it?Majenko– Majenko11/04/2015 16:04:24Commented Nov 4, 2015 at 16:04
-
On what? A TFT screen? LCD screen? On your computer? A slice of processed cheese? And do you want to see live data or analyse historical data? You need to give specifics or we can't help you.Majenko– Majenko11/04/2015 16:13:16Commented Nov 4, 2015 at 16:13
-
yes, on my computer. and I want to see Data in real timezakaria– zakaria11/04/2015 16:14:57Commented Nov 4, 2015 at 16:14
-
Do you want to program your own graphing system or use an off-the shelf product?Majenko– Majenko11/04/2015 16:16:26Commented Nov 4, 2015 at 16:16
-
Did you just casually drop the Matlab requirement in your comment? If so, please edit you question to reflect this requirement. Otherwise, if you want something simple, use processing to graph the dataGerben– Gerben11/04/2015 16:17:19Commented Nov 4, 2015 at 16:17
Add a comment
|
1 Answer
Yes you can use the Plot menu command in the new Arduino 1.6.6 or you can use the Visual Micro debugger to create graphs in Visual Studio
-
I tried with new arduino 1.6.6 but I don't know how to use the plotter. in the menu i found Serial plotter, can you tell me how can I do to plot my function ?zakaria– zakaria11/05/2015 12:36:49Commented Nov 5, 2015 at 12:36
-
it works. because if we want to plot we cannot write;
Serial.print("Output is :"); Serial.println(Output)
; so we have to write just :Serial.println(Output);
zakaria– zakaria11/05/2015 15:08:50Commented Nov 5, 2015 at 15:08 -
Yes that's right. In visual micro you can have multiple values with descriptions without editing your code. In Arduino you have simpler system and must change your code to use Serial.println(number) :)Visual Micro– Visual Micro11/06/2015 14:11:09Commented Nov 6, 2015 at 14:11