Perfect for travellers

Perfect for travellers

Most Popular Model

DC12V to AC 240V with 4 AC Outlets with Remote Control 2.4A USB and LED Display

SHOP NOW

DC 12V to AC240V with 3 AC Outlets + Remote Control +2.4A USB

SHOP NOW

Large Shell Pure Sine Wave Power Inverter 3000W 24V/240V USA Transistors 100% FULL POWER with Remote Control

SHOP NOW

Pure Sine Wave Inverter

When the inverter appears "OL", how to fix it?

Customer Reviews

Show more Wow you reached the bottom

FAQs

A: 1. Secure the supplied negative (black) DC cable to the negative (-) bolt on the inverter and connect the other end to the negative (-) post of the battery.

2. Fasten the supplied positive (red) DC cable to the positive (+) bolt of the inverter and the other end to the positive (+) post of the battery.

3. The nut of the terminal must be tightened to ensure a good connection.

4. Press and hold the power switch for one second, because it is a long-press switch.

PS: Make sure your battery capacity is large enough and the voltage is correct before connecting the inverter. Connecting the cables in reverse will damage the inverter and void the warranty.

A: Reason: The power switch is off or the inverter is in poor contact with the battery.

solutions: a. Press and hold the power switch for 1-2 seconds to turn on, the inverter switch is a long-press switchb. Check the cables and make sure they are tightly connected.

A: 1. Reason: Low input DC voltage

2. Reason: high input DC voltage; solution: a. Do not use it when the battery is chargingb. Check the rated voltage of the battery to ensure that it is within the allowable range of the input voltage.

3. Reason: the inverter triggers overload protection, the solution: reduce the load power

4. Reason: The inverter temperature is too high to trigger the over-temperature protection; Solution: a. Cut off the load and let it cool naturally for 10-30 minutes b. Restart after returning to normal temperature. Reduce load.c. Avoid blocking vents and improve ventilation conditions.

A: Reasons: 1. The load power is too large, or the actual power of the electrical appliance exceeds the nominal power 2. The starting power is greater than the rated power (especially for electrical appliances with motors) 3. The battery is too small;

solutions: a. Reduce the load power, or Turn on the appliance first, then turn on the inverter, b. Choose a larger inverter, c. Replace a larger battery and make sure the battery is fully charged.

A: The main reason is that the instantaneous current is too large, which causes the detection voltage to be too low and triggers a low-voltage alarm.

Solution: Please restart the inverter several times.

/** @private {string} */ class SpzCustomAnchorScroll extends SPZ.BaseElement { static deferredMount() { return false; } constructor(element) { super(element); /** @private {Element} */ this.scrollableContainer_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } buildCallback() { this.viewport_ = this.getViewport(); this.initActions_(); } setTarget(containerId, targetId) { this.containerId = '#' + containerId; this.targetId = '#' + targetId; } scrollToTarget() { const container = document.querySelector(this.containerId); const target = container.querySelector(this.targetId); const {scrollTop} = container; const eleOffsetTop = this.getOffsetTop_(target, container); this.viewport_ .interpolateScrollIntoView_( container, scrollTop, scrollTop + eleOffsetTop ); } initActions_() { this.registerAction( 'scrollToTarget', (invocation) => this.scrollToTarget(invocation?.caller) ); this.registerAction( 'setTarget', (invocation) => this.setTarget(invocation?.args?.containerId, invocation?.args?.targetId) ); } /** * @param {Element} element * @param {Element} container * @return {number} * @private */ getOffsetTop_(element, container) { if (!element./*OK*/ getClientRects().length) { return 0; } const rect = element./*OK*/ getBoundingClientRect(); if (rect.width || rect.height) { return rect.top - container./*OK*/ getBoundingClientRect().top; } return rect.top; } } SPZ.defineElement('spz-custom-anchor-scroll', SpzCustomAnchorScroll); const STRENGTHEN_TRUST_URL = "/api/strengthen_trust/settings"; class SpzCustomStrengthenTrust extends SPZ.BaseElement { constructor(element) { super(element); this.renderElement_ = null; } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } buildCallback() { this.xhr_ = SPZServices.xhrFor(this.win); const renderId = this.element.getAttribute('render-id'); SPZCore.Dom.waitForChild( document.body, () => !!document.getElementById(renderId), () => { this.renderElement_ = SPZCore.Dom.scopedQuerySelector( document.body, `#${renderId}` ); if (this.renderElement_) { this.render_(); } this.registerAction('track', (invocation) => { this.track_(invocation.args); }); } ); } render_() { this.fetchData_().then((data) => { if (!data) { return; } SPZ.whenApiDefined(this.renderElement_).then((apis) => { apis?.render(data); document.querySelector('#strengthen-trust-render-1713586127662').addEventListener('click',(event)=>{ if(event.target.nodeName == 'A'){ this.track_({type: 'trust_content_click'}); } }) }); }); } track_(data = {}) { const track = window.sa && window.sa.track; if (!track) { return; } track('trust_enhancement_event', data); } parseJSON_(string) { let result = {}; try { result = JSON.parse(string); } catch (e) {} return result; } fetchData_() { return this.xhr_ .fetchJson(STRENGTHEN_TRUST_URL) .then((responseData) => { if (!responseData || !responseData.data) { return null; } const data = responseData.data; const moduleSettings = (data.module_settings || []).reduce((result, moduleSetting) => { return result.concat(Object.assign(moduleSetting, { logos: (moduleSetting.logos || []).map((item) => { return moduleSetting.logos_type == 'custom' ? this.parseJSON_(item) : item; }) })); }, []); return Object.assign(data, { module_settings: moduleSettings, isEditor: window.self !== window.top, }); }); } } SPZ.defineElement('spz-custom-strengthen-trust', SpzCustomStrengthenTrust);