сряда, 7 февруари 2018 г.

Increase the maximum frequency of inverter iG5A

Sometimes it is confusing when you try to increase the maximum frequency.

Normally when you setup the frequency with the keypad, it is needed just to increase F21 to the desired Hz value.

But when you use a potentiometer you have to increase also the max frequency corresponding to the max voltage of the potentiometer.

This is done by parameter I10.

So, firstly you put F21 to the desired frequency
Then you put I10 to the corresponding frequency when the potentiometer gives max voltage (mostly 10V).

Резултат с изображение за ig5a

понеделник, 5 февруари 2018 г.

Сортиране на таблица в Joomla с Data Tables

 {source}
<!-- Сортиране на таблицата -->
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/dataTables.bootstrap.min.js"></script>
<!-- Сортиране на таблицата -->
<!-- Допълнителни настройки на таблицата -->
<script language="javascript" type="text/javascript">
$(document).ready(function() {
    $('#example').DataTable(
 {
  "pageLength": 2000,
        "language": {
            "lengthMenu": "Покажи само _MENU_ реда на всяка страница",
            "zeroRecords": "Свържете се с наш сътрудник за повече информация",
            "info": "Страница № _PAGE_ от общо _PAGES_",
            "infoEmpty": "Свържете се с наш сътрудник за повече информация",
            "infoFiltered": "(филтрирано от списък с _MAX_ ел. двигателя)",
"search": "Търси "
        }
    }
);
} );
</script>
<!-- Допълнителни настройки на таблицата -->
<?php
echo '
<table id="example" class="table table-striped table-bordered" cellspacing="0" width="100%">
        <thead>
            <tr>
              <th>Производител</th>
              <th>Мощност</th>
           
            </tr>
        </thead>
        <tfoot>
            <tr>
              <th>Производител</th>
              <th>Мощност</th>
           
            </tr>
        </tfoot>
        <tbody><tr><td></td></tr></tbody></table>';
?>
{/source}