var fDesc=new Array(); fDesc[0] = "The software can be used on all freely programmable controllers (ATMega, PIC, STM, etc.). This requires a serial interface on the controller and its connection to the PC. This is usually done via serial / USB converter, either as an add-on chip / module or already present on a board (Arduino). The connection is recognized as a virtual com port on the PC and can be viewed via the Windows Device Manager. Also a connection PC - PC is realizable. As of version 0.5a, LAN (UDP) can also be used as the connection to the microcontroller."; 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 = ''; } }