Electrical – Voltage on ADC input when VDD is not connected. Dangerous? (ADS 1115)

adcraspberry pisolar cell

I'm building a Raspberry Pi based system to monitor power output of a solar panel. I'm planning to use ADS1115 ADC. I sketched a simple circuit, but then I though of a potential problem.

It is possible that as some point the ADC will be connected to the solar panel, while the Raspberry Pi is either completely disconnected or not connected to power. The solar panel at this point can be producing voltage on the ADC input.

In my understanding the VDD pin of the ADC will be floating at this point.
The datasheet for the ADC says the maximum input voltage is VDD + 0.3V.
Do you think in such scenario the voltage from the solar panel can damage the ADC chip?

Thank you!

P.S: I googled the question a lot, but only found a topic on PIC built-in ADC, which said voltage on ADC input during PIC power-up can be a problem.

P.P.S: Sorry about the crudely drawn schematic.

Best Answer

There won't be immediate damage. But it's outside of the absolute maximum ratings. The current injection will be less than 1 mA due to the resistor.
However, ESD protection won't work properly now because the Vdd side of the internal clamping diodes isn't connected.

If you don't want to take the risk you can add a small buffer with higher impedance input.

schematic

simulate this circuit – Schematic created using CircuitLab

You still need an anti-alias filter of which cuts of at half your samplerate. You can do this with Cfilter.

Related Topic