var fDesc=new Array();
fDesc[0] = "Simulator for Arduino is the most full featured Arduino Simulator available at the present time (watch the video below).
The benefits and features of an Arduino Simulator are:
- The ability to teach and demonstrate the inner workings of an Arduino sketch
- Test out a sketch without the hardware, or prior to purchasing hardware
- Debug a sketch
- Demonstrate a project to a potential customer
- Develop a complicated sketch faster than using the hardware";
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 = '';
}
}