var fDesc=new Array(); fDesc[0] = "Snap4Arduino is a modification of the Snap! visual programming language that lets you seamlessly interact with almost all versions of the Arduino board. It features blocks-based, dynamic, live, concurrent, parallel programming; auto-configurable pinouts and high level hardware abstractions, transpilation of simple scripts into Arduino sketches; HTTP protocol for remote control and live-streaming of the Snap! stage, and more."; 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 = ''; } }