var fDesc=new Array();
fDesc[0] = "Kelly’s PM motor controller is full bridge or 4 quadrant controller. It provides fast and reliable electronic direction control. There is no arc, spark, or life limit on motor direction changes.
Features:
- Extended fault detection and protection. The LED flashing pattern indicates the fault
sources.
- Monitoring battery voltage. Stop driving if battery voltage is too high or too low.
- Built-in current loop and over current protection.
- Configurable motor temperature protection range.
- Current cutback at low temperature and high temperature to protect battery and controller.";
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 = '';
}
}