var fDesc=new Array();
fDesc[0] = "A further advantage: Sunny Data Control can be configured to directly communicate with your inverter and a PC. Thus it is possible to set your system's parameters without a data logger.
Sunny Data Control is the ideal addition for system monitoring with Sunny Boy Control and a PC. The free software archives the data from the data logger long-term on the PC, evaluates and presents it visually on the monitor.
Main features:
- Continuous system monitoring
- Graphic display of all measurement data and operating modes
- "Online display" with color-coded indication of the current performance of each Sunny Boy within your system
- Data export for the presentation of operating data on the Internet e.g., via Sunny Portal.
- Remote monitoring via dial-up into your Sunny Boy Control with Net Piggy Back.
- Direct communication with the inverters (without Sunny Boy Control) via RS485 or USB Service Interface.";
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 = '';
}
}