APW121417b_14V-17V EMC

FunctionKS3  Air-cooling Miner

We accept

Note:

You can check the exact version at the product tag which is on the side of the power supply and find the newest firmware accordingly from official website.

There are many versions of this power supply, it is recommended to consult customer service before purchasing.

APW12
OUT1DC Voltage14V-17V
Rated Current(220 V input)182A (maximum 212A)
Ripple & Noise<1%
Source adjustment rate<1%
Load Regulation<1%
Start-up and rise time<2S
Power-off retention time>10mS
OUT2DC Voltage12.3V
Rated Current(220 V input)18A
Ripple & Noise<1%
Voltage Accuracy12.2V—12.4V
Source adjustment rate<1%
Load Regulation<1%
Start-up and rise time<2S
Power-off retention time>10mS
InputVoltage Range200-240V AC
Frequency Range47-63Hz
Power Factor>0.99(full load)
Leakage Current<1.5mA(220V 50Hz)
ProtectionInput undervoltage protection value80-89V AC
Output Short CircuitYes
Over-temperature protectionYes
Output overcurrent protection value260A-340A
(protection value varies under different voltage)
EnvironmentOperating Temperature-20-45℃
Operating Humidity20%-90%RH(non-­condensing)
Altitude< 2000m
StructureDimensions254.6mm*251.6mm*63mm
Net Weight3.6KG
Cooling methodForced air cooling
Noise45dBA

Purchasing Guidelines


NOTES

1. One account can purchase a maximum of 200 units.

2. The shipping costs, cutsoms charges, and taxes(if any) are not included in the retail price shown above.

3. After an order has been submitted, a request to cancel the order, refund any part of the ordered amount or change the ordered item(s) to different item(s) or different batch(es) will not be entertained by Bitmern Mining.

4. The pictures shown are for reference only; the final shipment version shall prevail.

 

SHIPPING DETAILS

1. The products are made in China. If shipping to the U.S., customers will need to pay an extra 25% tariff.

2. Shipments will be scheduled on a first-paid-first-ship basis for orders on which Bitmern Mining has received full payment.

3. You are responsible for any customs delays or returned shipments due to a lack of proper documentation. It’s highly recommended to be aware of local customs clearance policies and to prepare all customs documentation ahead of time to avoid any customs clearance delays or unexpected costs.

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

Add your dynamic field and your info

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat.

/* -- The root styles must go in the element of the structure with the name "Single product"(Section). --*/

/* -- Border radius to the main photo of the gallery -- */
.single-product-4__gallery{
  .flex-viewport, .woocommerce-product-gallery__image{
    border-radius: var(--radius-m);
  }
}

.single-product-4__add-cart{
  /* Styles for when the product is sold individually */
  &:has(.input-text[type="hidden"]){
    .woocommerce-variation-add-to-cart, .cart{
      flex-direction: column;
    }
  }

  /*-- Styles applied to the container containing the quantity form and the button may vary depending on whether it has variations or not. --*/
  .variations_button, .cart:not(:has(.variations_button)){
    display:flex;
    gap: var(--space-xs);

    /*-- Button styles "Add to cart" --*/
    .button{
      margin-top:0;
      flex: 1;
    }

    /*-- Mobile Styles --*/
    @media(max-width: 766px){
      flex-direction:column;
    }
  }

  /*- Border radius styles in quantity input -*/
  .quantity{
    .action.minus{
      border-radius: var(--radius-s) 0 0  var(--radius-s);
    }

    .action.plus{
      border-radius: 0  var(--radius-s)  var(--radius-s) 0;
    }
  }
}
/* The purpose of the script is to have the aria-expanded and aria-controls attributes for web accessibility. 
 You can remove this script and the accordion will still work. */
const btnFaq = document.querySelectorAll('.single-product-4__accordion-heading');
const contentFaq = document.querySelectorAll('.single-product-4__accordion-description');

btnFaq.forEach((button) => {
  button.addEventListener('click', () => {
    // Gets the current state of the button
    const isExpanded = button.getAttribute('aria-expanded') === 'true';

    // Reset all buttons to "false".
    btnFaq.forEach((currentBtn) => {
      currentBtn.setAttribute('aria-expanded', 'false');
    });

    // Changes the status of the current button
    button.setAttribute('aria-expanded', isExpanded ? 'false' : 'true');
  });
});

// Load function after HTML content is loaded
document.addEventListener('DOMContentLoaded', function () {
  // Make a tour on each button there is
  btnFaq.forEach((button, i) => {
    const contentId = contentFaq[i].getAttribute('id');
    button.setAttribute('aria-controls', contentId);
  });
});