Input measured 4.9 V (4.50-5.25 allowed). Output on pin 5 or 6 is always 2.4 V.
Datasheet

Outputs are not tied together. Is there something I need to do related to load impedance at these outputs?
Datasheet

Outputs are not tied together. Is there something I need to do related to load impedance at these outputs?
An ESP32 is also reading the data. It outputs zero for everything:capable of sinking or sourcing up to 100μA. The user should ensure the load impedance is sufficiently high as to not source/sink >100μA
Code:
float x, y;
void setup()
{
Serial.begin(9600);
}
void loop()
{
x = analogRead(17); // read pin 16
y = analogRead(16); // read pin 17
Serial.print(x, DEC); // acceleration in X axis
Serial.println(" ");
Serial.print(y, DEC); // acceleration in Y axis
Serial.println(" ");
delay(100);
}