{"id":10490,"date":"2025-09-15T15:54:44","date_gmt":"2025-09-15T13:54:44","guid":{"rendered":"https:\/\/eisystems.al\/?page_id=10490"},"modified":"2025-09-15T16:51:26","modified_gmt":"2025-09-15T14:51:26","slug":"llogaritesi","status":"publish","type":"page","link":"https:\/\/eisystems.al\/sq\/llogaritesi\/","title":{"rendered":"Llogaritesi"},"content":{"rendered":"<section id=\"led-calculator\">\n  <style>\n    #led-calculator {\n      font-family: Arial, sans-serif;\n      margin: 30px auto;\n      max-width: 650px;\n    }\n    #led-calculator h2 {\n      text-align: center;\n      color: #333;\n    }\n    #led-calculator .calc-container {\n      background: #fff;\n      padding: 20px;\n      border-radius: 10px;\n      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);\n    }\n    #led-calculator label {\n      display: block;\n      margin-top: 10px;\n      font-weight: bold;\n    }\n    #led-calculator input,\n    #led-calculator select,\n    #led-calculator button {\n      width: 100%;\n      padding: 10px;\n      margin-top: 5px;\n      border: 1px solid #ccc;\n      border-radius: 5px;\n    }\n    #led-calculator button {\n      background: #4caf50;\n      color: white;\n      font-weight: bold;\n      cursor: pointer;\n      margin-top: 15px;\n    }\n    #led-calculator button:hover {\n      background: #45a049;\n    }\n    #led-calculator .result {\n      margin-top: 20px;\n      padding: 15px;\n      background: #eef;\n      border-radius: 5px;\n    }\n  <\/style>\n\n  <h2>Llogarit\u00ebsi Reklamave LED<\/h2>\n  <div class=\"calc-container\">\n    <label for=\"widthCm\">Gjer\u00ebsia (cm):<\/label>\n    <input type=\"number\" id=\"widthCm\" min=\"1\" required \/>\n\n    <label for=\"heightCm\">Lart\u00ebsia (cm):<\/label>\n    <input type=\"number\" id=\"heightCm\" min=\"1\" required \/>\n\n    <label for=\"module\">Zgjidh modul:<\/label>\n    <select id=\"module\">\n      <option value=\"p10\">P10 (25\u20ac \/ modul, ushqyes 35\u20ac)<\/option>\n      <option value=\"p5\">P5 (35\u20ac \/ modul, ushqyes 36\u20ac)<\/option>\n      <option value=\"p3\">P3 (45\u20ac \/ modul, ushqyes 37\u20ac)<\/option>\n    <\/select>\n\n    <label for=\"installationCost\">Kosto Montimi (opsionale, \u20ac):<\/label>\n    <input type=\"number\" id=\"installationCost\" min=\"0\" placeholder=\"Vendosni vet koston e montimit\" \/>\n\n    <button onclick=\"llogarit()\">Llogarit<\/button>\n\n    <div class=\"result\" id=\"result\"><\/div>\n  <\/div>\n\n  <script>\n    function llogarit() {\n      const widthCm = parseFloat(document.getElementById(\"widthCm\").value);\n      const heightCm = parseFloat(document.getElementById(\"heightCm\").value);\n      const moduleType = document.getElementById(\"module\").value;\n      const installationCostInput = parseFloat(document.getElementById(\"installationCost\").value) || 0;\n\n      if (!widthCm || !heightCm) {\n        alert(\"Ju lutem plot\u00ebsoni p\u00ebrmasat n\u00eb cm.\");\n        return;\n      }\n\n      const panelSizesCm = {\n        p10: { w: 32, h: 16 },\n        p5: { w: 32, h: 16 },\n        p3: { w: 32, h: 16 }\n      };\n\n      const numPanelsWide = Math.ceil(widthCm \/ panelSizesCm[moduleType].w);\n      const numPanelsHigh = Math.ceil(heightCm \/ panelSizesCm[moduleType].h);\n      const totalPanels = numPanelsWide * numPanelsHigh;\n\n      const cmToPx = { p10: 1, p5: 2, p3: 96 \/ 32 };\n      const widthPx = widthCm * cmToPx[moduleType];\n      const heightPx = heightCm * cmToPx[moduleType];\n\n      const modulePrices = { p10: 25, p5: 35, p3: 45 };\n      const powerPrices = { p10: 35, p5: 36, p3: 37 };\n      const powerRatio = { p10: 6, p5: 6, p3: 6 };\n      const modulePrice = modulePrices[moduleType];\n      const powerPrice = powerPrices[moduleType];\n\n      const panelsCost = totalPanels * modulePrice;\n      const numPower = Math.ceil(totalPanels \/ powerRatio[moduleType]);\n      const powerCost = numPower * powerPrice;\n\n      const programmerCost = heightPx <= 64 ? 45 : 150;\n      const receiverLimit = 256;\n      const maxDimension = Math.max(widthPx, heightPx);\n      const receiversNeeded = Math.ceil(maxDimension \/ receiverLimit);\n      const receiversCost = receiversNeeded * 40;\n\n      const caseCost = widthCm * heightCm * 0.016;\n      const accessoryCost = totalPanels * 2;\n\n      const total = panelsCost + powerCost + programmerCost + receiversCost + caseCost + accessoryCost + installationCostInput;\n\n      document.getElementById(\"result\").innerHTML = `\n        <b>P\u00ebrmasa hyr\u00ebse:<\/b> ${widthCm}cm \u00d7 ${heightCm}cm <br>\n        <b>P\u00ebrmasa konvertuar:<\/b> ${widthPx.toFixed(2)}px \u00d7 ${heightPx.toFixed(2)}px <br>\n        <b>Module:<\/b> ${totalPanels} \u00d7 ${moduleType} = \u20ac${panelsCost.toFixed(2)} <br>\n        <b>Ushqyes:<\/b> ${numPower} \u00d7 \u20ac${powerPrice} = \u20ac${powerCost.toFixed(2)} <br>\n        <b>Programator:<\/b> \u20ac${programmerCost.toFixed(2)} <br>\n        <b>Receiver:<\/b> ${receiversNeeded} \u00d7 \u20ac40 = \u20ac${receiversCost.toFixed(2)} <br>\n        <b>Kasa:<\/b> \u20ac${caseCost.toFixed(2)} <br>\n        <b>Aksesor\u00eb:<\/b> ${totalPanels} \u00d7 \u20ac2 = \u20ac${accessoryCost.toFixed(2)} <br>\n        <b>Montim:<\/b> \u20ac${installationCostInput.toFixed(2)} <br><br>\n        <b style=\"font-size:18px\">Totali: \u20ac${total.toFixed(2)}<\/b>\n      `;\n    }\n  <\/script>\n<\/section>","protected":false},"excerpt":{"rendered":"<p>Llogarit\u00ebsi Reklamave LED Gjer\u00ebsia (cm): Lart\u00ebsia (cm): Zgjidh modul: P10 (25\u20ac \/ modul, ushqyes 35\u20ac)P5 (35\u20ac \/ modul, ushqyes 36\u20ac)P3 (45\u20ac \/ modul, ushqyes 37\u20ac) Kosto Montimi (opsionale, \u20ac): Llogarit<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"footnotes":""},"class_list":["post-10490","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Llogaritesi - EI Systems<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eisystems.al\/sq\/llogaritesi\/\" \/>\n<meta property=\"og:locale\" content=\"sq_AL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Llogaritesi - EI Systems\" \/>\n<meta property=\"og:description\" content=\"Llogarit\u00ebsi Reklamave LED Gjer\u00ebsia (cm): Lart\u00ebsia (cm): Zgjidh modul: P10 (25\u20ac \/ modul, ushqyes 35\u20ac)P5 (35\u20ac \/ modul, ushqyes 36\u20ac)P3 (45\u20ac \/ modul, ushqyes 37\u20ac) Kosto Montimi (opsionale, \u20ac): Llogarit\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eisystems.al\/sq\/llogaritesi\/\" \/>\n<meta property=\"og:site_name\" content=\"EI Systems\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/eisystems.al\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-09-15T14:51:26+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minut\u00eb\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eisystems.al\/llogaritesi\/\",\"url\":\"https:\/\/eisystems.al\/llogaritesi\/\",\"name\":\"Llogaritesi - EI Systems\",\"isPartOf\":{\"@id\":\"https:\/\/eisystems.al\/#website\"},\"datePublished\":\"2025-09-15T13:54:44+00:00\",\"dateModified\":\"2025-09-15T14:51:26+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/eisystems.al\/llogaritesi\/#breadcrumb\"},\"inLanguage\":\"sq\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eisystems.al\/llogaritesi\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eisystems.al\/llogaritesi\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eisystems.al\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Llogaritesi\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eisystems.al\/#website\",\"url\":\"https:\/\/eisystems.al\/\",\"name\":\"EI Systems\",\"description\":\"Innovative Solution - Trusted Integration!\",\"publisher\":{\"@id\":\"https:\/\/eisystems.al\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eisystems.al\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"sq\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eisystems.al\/#organization\",\"name\":\"EI Systems\",\"url\":\"https:\/\/eisystems.al\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"sq\",\"@id\":\"https:\/\/eisystems.al\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eisystems.al\/wp-content\/uploads\/2024\/07\/7.png\",\"contentUrl\":\"https:\/\/eisystems.al\/wp-content\/uploads\/2024\/07\/7.png\",\"width\":1574,\"height\":419,\"caption\":\"EI Systems\"},\"image\":{\"@id\":\"https:\/\/eisystems.al\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/eisystems.al\/\",\"https:\/\/www.instagram.com\/eisystems.al\",\"https:\/\/www.linkedin.com\/company\/eisystems-al\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Llogaritesi - EI Systems","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/eisystems.al\/sq\/llogaritesi\/","og_locale":"sq_AL","og_type":"article","og_title":"Llogaritesi - EI Systems","og_description":"Llogarit\u00ebsi Reklamave LED Gjer\u00ebsia (cm): Lart\u00ebsia (cm): Zgjidh modul: P10 (25\u20ac \/ modul, ushqyes 35\u20ac)P5 (35\u20ac \/ modul, ushqyes 36\u20ac)P3 (45\u20ac \/ modul, ushqyes 37\u20ac) Kosto Montimi (opsionale, \u20ac): Llogarit","og_url":"https:\/\/eisystems.al\/sq\/llogaritesi\/","og_site_name":"EI Systems","article_publisher":"https:\/\/www.facebook.com\/eisystems.al\/","article_modified_time":"2025-09-15T14:51:26+00:00","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minut\u00eb"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/eisystems.al\/llogaritesi\/","url":"https:\/\/eisystems.al\/llogaritesi\/","name":"Llogaritesi - EI Systems","isPartOf":{"@id":"https:\/\/eisystems.al\/#website"},"datePublished":"2025-09-15T13:54:44+00:00","dateModified":"2025-09-15T14:51:26+00:00","breadcrumb":{"@id":"https:\/\/eisystems.al\/llogaritesi\/#breadcrumb"},"inLanguage":"sq","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eisystems.al\/llogaritesi\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/eisystems.al\/llogaritesi\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eisystems.al\/"},{"@type":"ListItem","position":2,"name":"Llogaritesi"}]},{"@type":"WebSite","@id":"https:\/\/eisystems.al\/#website","url":"https:\/\/eisystems.al\/","name":"EI Systems","description":"Innovative Solution - Trusted Integration!","publisher":{"@id":"https:\/\/eisystems.al\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eisystems.al\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"sq"},{"@type":"Organization","@id":"https:\/\/eisystems.al\/#organization","name":"EI Systems","url":"https:\/\/eisystems.al\/","logo":{"@type":"ImageObject","inLanguage":"sq","@id":"https:\/\/eisystems.al\/#\/schema\/logo\/image\/","url":"https:\/\/eisystems.al\/wp-content\/uploads\/2024\/07\/7.png","contentUrl":"https:\/\/eisystems.al\/wp-content\/uploads\/2024\/07\/7.png","width":1574,"height":419,"caption":"EI Systems"},"image":{"@id":"https:\/\/eisystems.al\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/eisystems.al\/","https:\/\/www.instagram.com\/eisystems.al","https:\/\/www.linkedin.com\/company\/eisystems-al"]}]}},"_links":{"self":[{"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/pages\/10490","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/comments?post=10490"}],"version-history":[{"count":6,"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/pages\/10490\/revisions"}],"predecessor-version":[{"id":10496,"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/pages\/10490\/revisions\/10496"}],"wp:attachment":[{"href":"https:\/\/eisystems.al\/sq\/wp-json\/wp\/v2\/media?parent=10490"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}