Advertisement
ZaynerTech

gnuplot file for Arduino communication through webpage

Mar 31st, 2014
406
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. set autoscale x
  2. set yrange [0 : 100]
  3. unset log # remove any log-scaling
  4. unset label # remove any previous labels
  5. set xtic auto # set xtics automatically
  6. set ytic auto # set ytics automatically
  7. set title "Thermocycler "
  8. set xlabel "Time (s)"
  9. set ylabel "Temperature"
  10. set terminal jpeg
  11. set output "thermo.jpeg"
  12. plot "Thermo.dat" using 1:2 title 'Thermocycler' with linespoints
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement