var fDesc=new Array();
fDesc[0] = "The new EasyPower Lite software is intended for digital lab power supplies of series PSI 8000T/DT/2U, PSI 800 R and PSI 9000 series. It requires one of the EA interface cards IF-R1/R2 (RS232, 1 unit), IF-U1/U2 (USB) or IF-E1/E2 (via the additional USB port).
Main features:
- Monitoring and control of one device per running instance
- Read actual values of current, voltage and power
- Switch power output on/off
- Device condition (errors, output, regulation mode)
- Read device type string and read/edit user text
- Adjust current/voltage/power set values
- Activate/deactivate remote control
- Load and run automated sequences from CSV file (current, voltage and time)
- Data acquisition with actual and set values, date, time and condition to CSV file
- Graphical display of the chronological progression of actual and set values";
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 = '';
}
}