Don't apply >16V on Vin

Like other Arduino boards, the on-board regulator is rated for an input voltage as high as 20V, even though the recommended input limit is 12V. Being that this is a switching regulator, some might feel safer about going higher than 12V since the regulator is generating less heat / waiting power when compared to previous boards.

However, unlike the previous Arduino boards, the input capacitors on the Due are only rated for 16V. Since it is an Aluminum Electrolytic, it probably won't fail immediately with >16V applied, however, its lifetime will be compromised.

The hardware page should list the input limit at 16V, not 20V.

Also remember that the voltage from an unregulated 12v supply can go over 16v off-load. There were a few reports of the capacitors on the Arduino Mega exploding when powered by an unregulated 12v supply. (I can't tell for sure but the Mega capacitors might have been tantalums - the aluminium capacitors on the Due look like they will be more tolerant)

Yikes, just the other day I suggested that higher voltages should be OK because they have a switching regulator.

Why on earth not use a 25v cap?


Rob

Graynomad:
Yikes, just the other day I suggested that higher voltages should be OK because they have a switching regulator.

That's exactly what I thought until I saw the caps.

Due is similar to uno regarding VIN node. We should keep the recommended input voltage between 7-12V. Supplying more than that, let's say 13V, will affect the IC1B (LMV358IDGKR) comparator input (CMP - +3V3). When you supply a 13V, the VIN node will drop down to 12V due to D1. The 12V is then divided into half by RN4C and RN4D to 6V, which is more than the LMV358 maximum input rating (5.5V). So, if we supply more than 12V, the LMV358 will pay.

Palliser:
Due is similar to uno regarding VIN node. We should keep the recommended input voltage between 7-12V. Supplying more than that, let's say 13V, will affect the IC1B (LMV358IDGKR) comparator input (CMP - +3V3). When you supply a 13V, the VIN node will drop down to 12V due to D1. The 12V is then divided into half by RN4C and RN4D to 6V, which is more than the LMV358 maximum input rating (5.5V). So, if we supply more than 12V, the LMV358 will pay.

I always wondered what that op-amp was doing in there, but I forgot to ask... Thanks!