(function () {
try {
// AQ-r2 (2026-06-09): respect the explicit-denial sentinel
// written by cookie-consent-harden.js writeATR() on any
// marketing-axis denial (payload.marketing === false; cycle-3 F1).
// Without this gate, the next page navigation re-creates
// gmx_first_touch from the current URL+referrer+utm_*+click_ids,
// silently undoing the reject-all deletion (sweep finding #1).
// The sentinel is cleared the moment the visitor grants
// marketing in the banner (analytics-only grant does NOT
// clear), restoring the writer path on the very next
// page load. Page-cache-safe: the sentinel is a
// browser-resident cookie checked in the inline script, so
// varnish/breeze-served HTML still hits this gate.
if (/(?:^|;\s*)gmx_consent_denied=1(?:;|$)/.test(document.cookie || '')) return;
var CLICK_IDS = ['gclid','fbclid','msclkid','ttclid','wbraid','gbraid','li_fat_id'];
var qs = new URLSearchParams(window.location.search);
var urlClickIdKey = null;
for (var i = 0; i < CLICK_IDS.length; i++) {
if (qs.get(CLICK_IDS[i])) { urlClickIdKey = CLICK_IDS[i]; break; }
}// Parse existing cookie.
var existing = null;
var match = document.cookie.match(/(?:^|;\s*)gmx_first_touch=([^;]+)/);
if (match) {
try { existing = JSON.parse(decodeURIComponent(match[1])); } catch (e) { existing = null; }
}// GWP-273 — referrer-enrichment branch.
// Keep existing unless either (a) URL carries a new click id
// the stored payload lacks (paid click is a higher-value
// signal and upgrades direct/organic), OR (b) the stored
// payload has empty referrer AND the current document.referrer
// is non-empty + external (Safari/ITP/policy-quirk catch:
// first-hit may have missed the referrer; later same-session
// page-loads can recover it).
var existingHasRef = !!(existing && existing.referrer && existing.referrer !== '');
var docRef = document.referrer || '';
var refHost = '';
if (docRef) {
try {
refHost = new URL(docRef).hostname.replace(/^www\./, '').toLowerCase();
} catch (e) { refHost = ''; }
}
var ownHost = (location.host || '').replace(/^www\./, '').toLowerCase();
var currentExternalRef = !!(refHost && refHost !== ownHost);
var canEnrichRef = !!existing && !existingHasRef && currentExternalRef;if (existing) {
if (!urlClickIdKey && !canEnrichRef) return;
if (urlClickIdKey && existing[urlClickIdKey] && !canEnrichRef) return;
}var utm_keys = [
'utm_source','utm_medium','utm_campaign','utm_content','utm_term',
'utm_adgroup','utm_matchtype','utm_network','utm_device','utm_placement'
];
// GWP-273 — merge-preserving base. When enriching an existing
// payload, retain its landing_url + ts + prior click ids /
// utms; only overlay referrer (and any click id appended below
// via the forEach). Branches with/without urlClickIdKey were
// collapsed — both produced the identical Object.assign — the
// click id is added uniformly later.
//
// GWP-273 design choice: "latest external referrer wins" —
// accepted edge case where a user opens a new external tab
// post-empty-first-touch and returns; low-volume, simple, no
// sentinel flag needed.
var data;
if (existing && canEnrichRef) {
data = Object.assign({}, existing, { referrer: docRef });
} else {
data = { landing_url: window.location.href, referrer: docRef, ts: Date.now() };
}
utm_keys.concat(CLICK_IDS).forEach(function (k) {
var v = qs.get(k);
if (v) data[k] = v;
});
// GWP-208 — carry Meta's first-party click-linker cookies (_fbc
// = fb.1.<ts>.<fbclid>, _fbp) into the captured payload so they
// ride the persistent gmx_first_touch cookie cross-page (LP X →
// LP Y) the same way the URL click-ids do. The CF7 hidden-field
// populator copies the whole payload verbatim, so fbc/fbp reach
// the lead even when the form lives on a page without ?fbclid.
var fbcMatch = document.cookie.match(/(?:^|;\s*)_fbc=([^;]+)/);
if (fbcMatch && fbcMatch[1]) data.fbc = decodeURIComponent(fbcMatch[1]);
var fbpMatch = document.cookie.match(/(?:^|;\s*)_fbp=([^;]+)/);
if (fbpMatch && fbpMatch[1]) data.fbp = decodeURIComponent(fbpMatch[1]);
var encoded = encodeURIComponent(JSON.stringify(data));
if (encoded.length > 3800) return;
var expires = new Date(Date.now() + 90 * 864e5).toUTCString(); // GWP-143 C1: match Google Ads 90-day attribution window
var secure = window.location.protocol === 'https:' ? '; Secure' : '';
document.cookie = 'gmx_first_touch=' + encoded + '; Path=/; Expires=' + expires + '; SameSite=Lax' + secure;
} catch (e) {}
})();
/* Meta Pixel base — inline in wp_head so Breeze Delay-All-JS does not defer it; fbevents.js is async-injected (optimizer-invisible). */
!function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,document,'script',
'https://connect.facebook.net/en_US/fbevents.js');/* Symmetric with server GMX_Consent: revoke BEFORE init; cookies/sends held until grant. */
fbq('consent', 'revoke');
fbq('init', '1857131551802431');
fbq('track', 'PageView'); /* queued; flushed to Meta only after consent grant *//* Grant bridge — reads the SAME ATR marketing signal as GMX_Consent.applyConsent(). */
(function () {
function read(name){var m=document.cookie.match('(?:^|; )'+name.replace(/([.*+?^${}()|[\]\\])/g,'\\$1')+'=([^;]*)');return m?decodeURIComponent(m[1]):'';}
function marketingGranted(){
try {
var given = read('atr_cookie_notice_consent_given');
if (!given) return false; // undecided -> stay revoked
var c = JSON.parse(read('atr_cookie_notice_consent') || '{}');
return !!(c.marketing || c.ad_storage === 'granted');
} catch (e) { return false; } // NO-SILENT-OK: parse/read failure degrades gracefully to revoked (consent stays held; no marketing send) — not an error to report.
}
function apply(){ if (marketingGranted()) fbq('consent', 'grant'); }
apply();
document.addEventListener('click', function(ev){
if (ev.target && ev.target.closest && ev.target.closest('[class*="atr-cookie"], #atr-cookie-notice')) setTimeout(apply, 50);
}, true);
window.addEventListener('storage', apply);
})();
var breeze_prefetch = {"local_url":"https://gomixapp.com","ignore_remote_prefetch":"1","ignore_list":["/cart/","/checkout/","/my-account/","https://gomixapp.co.il/(.)/u05d4u05d8u05d5u05e4u05e1-u05e0u05e9u05dcu05d7-u05d1u05d4u05e6u05dcu05d7u05d4/","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
You’ve decided to upgrade your business and install an impressive LED screen or video wall? Excellent. Digital signage for businesses is far more than an aesthetic trend today – it’s a “salesperson” working 24/7, driving foot traffic and letting you swap promotions at the click of a button. But right before closing the deal, most business owners pause and ask two critical questions: “How much electricity is this screen going to eat every month?” and “What kind of electrical infrastructure do I actually need to prepare for it?”
While LED screens were once considered “space heaters” that gobbled enormous amounts of power, the technology has taken a major leap forward. In the following article we’ll break it down at eye level, without complicated jargon: we’ll analyze updated 2026 electricity costs, explain the required electrical infrastructure, and present the cost-efficient model from GoMixApp that ties all the loose ends together.
Key Points
A 10 sq m LED screen consumes on average 1.5 kWh = about NIS 1.1 per operating hour (2026 tariff)
Monthly operation at 12 hours per day: about NIS 396 – cheaper than the air conditioner in the store
Required electrical infrastructure: a separate 16A line per 4 sq m (total NIS 1,500-2,500 one-time cost)
ROI of just 18-36 months for a commercial LED screen
The big secret: peak consumption versus working consumption (or why the screen is cheaper than you thought)
To understand how much electricity an LED screen costs, you first need to understand how it works. An LED screen is made up of millions of tiny bulbs. Unlike your old television, in which the backlight is always on, in an LED screen each bulb only lights up when it needs to display a color. When the screen shows a black background – the bulbs are effectively off and consume no electricity at all.
That’s why, in every screen’s spec sheet, you’ll always see two numbers: Peak Power – the extreme scenario where the entire screen is lit up in bright white; and Average Power – the actual day-to-day consumption, typically 35%-50% of peak.
GoMixApp’s advanced screens feature an optimized peak consumption of 350 watts per square meter. For example, a large 10 sq m screen will consume:
In peak mode (bright white at midday): approximately 3.5 kilowatts (kW) per hour
In normal operating mode (displaying ads and video): only about 1.5 kilowatts (kW) per hour
Bottom line – how much does it come out to in shekels on the electricity bill?
As of 2026, the updated electricity tariff stands at approximately NIS 0.6432 per kilowatt-hour (kWh), including VAT. If we take our screen (10 sq m) that consumes 1.5 kWh on average, and factor in the fixed charges of the electric company – we arrive at a cost of about NIS 1.1 only per operating hour. Even if you push it to the maximum at 3.5 kWh, the cost will reach at most NIS 2.2 per hour.
Operating time
Estimated average cost
One hour
~NIS 1.1
Business day (12 hours)
~NIS 13.2
Full 24-hour day
~NIS 26.4
Month of operation (12 hours per day)
~NIS 396
Full year (12 hours per day)
~NIS 4,750
Electricity cost table for a 10 sq m LED screen based on average consumption of 1.5 kWh
As you can see, the cost of running a huge commercial LED screen, which can generate thousands of shekels a month in revenue for your business and pull in customers off the street, comes to less than 400 shekels per month. In addition, you completely save all the recurring costs of printing paper signs, vinyl banners and canvases every time a promotion changes.
A 10 sq m LED screen in normal operating mode: only about 1.5 kWh
Electrical infrastructure for an LED screen: why is everyone talking about “16 amps per 4 sq m”?
One of the most common mistakes business owners make is to think they can simply hang a 10 sq m screen and plug it into the nearest outlet with an extension cord. Digital signage for businesses is professional equipment that requires a stable and reliable electrical infrastructure. The most important engineering rule: a separate single-phase electrical line is required, with a 16 amp circuit breaker, for every 4 square meters of screen.
Why exactly? After all, 4 sq m consuming 350 watts each adds up to 1,400 watts – which is only a little more than 6 amps. The answer lies in the moment of power-up. When you turn on an LED screen, the power supplies all charge up at once and create a momentary voltage spike called “inrush current”. If you connect too large a screen to a single 16 amp line, that voltage spike will simply trip the breaker in your panel. Splitting it into a 16A line per 4 sq m ensures the screen operates stably, without shorts and without frustrating power outages.
How much does it cost to prepare the infrastructure?
For a 10 sq m screen you’ll need three such lines (two lines for 8 sq m, plus one more line for the remaining two meters). If the electrical panel is nearby and has room for new breakers, calling an electrician to add 16 amp power points will typically cost between NIS 350 and NIS 800 per point. In other words, the cost of preparing the electrical infrastructure will run between NIS 1,500 and NIS 2,500 as a one-time expense – a marginal sum relative to the business return the screen delivers. More details on professional commercial LED screens.
The required infrastructure: a separate 16A line per every 4 sq m of screen
How to further reduce operating costs? Pro tricks
GoMixApp, with over 15 years of experience and more than 1,000 completed projects, integrates smart technologies into its screens that save you money every month:
Automatic brightness sensors (Auto-Brightness)
A screen running at peak brightness in the middle of the night not only blinds passersby – it wastes electricity for nothing and overheats itself. Our control systems automatically lower screen brightness when the sun sets. Reducing brightness in the evening cuts internal heat by about 14 degrees, saves electricity, and extends screen life by approximately 40%. Want to dive deeper? Read the complete guide to optimal brightness levels in digital signage.
Energy-aware design
Remember that the color black doesn’t draw electricity? When you design your signage through GoMixApp’s content management system (CMS), using dark backgrounds with illuminated text or logo produces a premium look (thanks to HDR technology that enhances contrast) and dramatically cuts ongoing electricity consumption.
Smart remote management (starting at NIS 100 excluding VAT per month)
GoMixApp’s cloud platform, offered in an affordable monthly subscription model or in a “do it yourself” model, lets you turn off, turn on and change content from anywhere in the world – with no need to run an expensive computer or server inside the store.
Frequently asked questions about LED screen electricity costs
How much electricity does a 10 sq m commercial LED screen actually consume?
In normal operating mode the screen consumes about 1.5 kilowatt-hours (kWh), and in maximum bright-white mode up to 3.5 kWh. On average, based on the updated 2026 electricity tariff (NIS 0.6432 per kWh), the cost works out to about 1.1 shekels per operating hour.
How much does it cost to prepare the electrical infrastructure for an LED screen?
The engineering rule is a separate 16 amp line per every 4 square meters of screen. Adding a power point by a licensed electrician costs NIS 350-800 per point. A 10 sq m screen requires three points, totaling NIS 1,500-2,500 as a one-time expense.
Can you connect an LED screen to a regular outlet?
No. A significantly sized commercial LED screen requires a dedicated 16 amp line because of the high inrush current at the moment of power-up. A regular outlet will trip the breaker and may cause recurring shorts and power outages.
How much does monthly operation of a 10 sq m LED screen cost?
At 12 hours of operation per day, electricity consumption costs about 396 shekels per month. A full year: about 4,750 shekels. This is usually cheaper than the electricity expenses of an air conditioner in the store.
What is the difference between peak consumption and working consumption?
Peak Power is an extreme scenario where the entire screen is lit up in bright white at full intensity. Average Power is the day-to-day consumption when displaying normal content, and stands at about 35-50% of peak consumption.
Automatic brightness sensors – how much do they save?
These sensors automatically lower screen brightness when the sun sets. The reduction cuts internal heat by about 14 degrees, saves significant electricity, and extends screen life by approximately 40%.
How long does it take an LED screen to return the investment (ROI)?
Most businesses recover the investment within just 18 to 36 months. An LED screen acts as “physical SEO” – drawing new customers from the street 24/7, saving recurring printing costs, and enabling promotion changes at the click of a button.
Bottom line: an LED screen is an asset, not a burden
When you look at the full picture – “Total Cost of Ownership” (TCO) – it’s easy to understand why so many businesses are moving to LED screens. Ongoing costs are minimal, around NIS 1.1 per operating hour. This is “physical SEO” – just as you invest in SEO to attract online visitors, the LED screen actively pulls customer traffic into your physical business from the street.
With a dramatic drop in print expenses, unmatched advertising power, and quality components that demand minimal maintenance (see the guide to LED screen maintenance for businesses), most businesses return the investment (ROI) on the screen within just 18 to 36 months.
With proper infrastructure planning and the integration of efficient 350 watts-per-sq-m screens from GoMixApp, you get digital signage that’s innovative, reliable, and above all – power-efficient.
var atrCookieNoticeSettings = {"cookieName":"atr_cookie_notice_consent","decisionCookieName":"atr_cookie_notice_consent_given","expiryDays":"365","autoHideDelay":"0","enableDebug":"","siteName":"GoMixApp","isPrivacyPage":"","privacyPolicyUrl":"https://gomixapp.com/privacy-policy/","privacyNoteText":"\ud83d\udca1 You can read this page while deciding about cookies","mode":"simple"};
//# sourceURL=atr-cookie-notice-simple-js-extra