var fDesc=new Array(); fDesc[0] = "The Simple Graph application is a Labview program that uses the Labview Arduino Driver (LArVa) to gather between 1 and 6 channels from your Arduino microcontroller and display them on a graph. The program allows you to save the raw data and access the full capabilities of the LArVa driver, such as variable acquisition rates and on-board firmware averaging. Simple Graph shows the capability of LArVa, serves as useful example code for Labview programmers and gives basic functionality to those who want to do super inexpensive Arduino based data acquisition."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }