Random shutdown of Arduino Leonardo with HX711 at 80hz

Hello,

I have an Arduino Leonardo and I want to build a force sensor. The problem is that the force has to be documented very detailed (high frequency) to calculate what I want (the force that is there at any point in time of the measurement).
For this, I use an HX711 together with a 1kg load cell and I have to measure at 80hz. I use the library "HX711_ADC" that is available in the library manager and I have set the smoothing to minimum. My problem is, whatever I do, I can't measure at 80hz, I can measure at 10hz with no problem but 80hz isn't possible. I connected pin 15 of the HX711 directly and via a pullup resistor (4,7kOhm and some lower values) to 5V (which is the voltage I use for the HX711).
When I do it directly the Leonardo shuts down (I believe because of to high current cunsumption), when I connect it via a resistor it does nothing. On 3.3V it changes nothing whether I connect it or not (regardless of whether I use a pullup or not).
In the attachment you can see that the loop function runs several times (and puts out the same weight more than one time) without getting the more current weight.

My code is as following. For now it's a simple scale:

#include <HX711_ADC.h>

HX711_ADC cell(2,3);

void setup() {
  delay (2000);
  cell.begin();
  cell.start(2000);
  cell.setCalFactor(292318.00/174);
  Serial.begin(38400);
}

void loop() {
  cell.update();
  Serial.println(cell.getData());
  delay (12);
}

I would appreciate if you could help me.

Bastian

Oh and by the way: Sorry for the bad English, I come from Germany and sorry for sounding stupid, I'm new to Arduinos.

Bastian2001:
I connected pin 15 of the HX711 directly...to 5V.

Which would short the 5v directly to ground (did you look at the schematic?)

On some boards, like Sparkfun's, you cut a trace to get 80 Hz. On others, you have to desolder and lift the pin (to disconnect it from ground) before you connect it to 5v with a pull-up.

The problem is that I also tried it with a 4.7 and also 10kOhm resistor and it still didn't work. Just got 10Hz readings.

Well of course it didn't: the pin is grounded. What is the voltage at a grounded pin if you try to pull it high with a resistor to 5v? Zero.

Did you read the last sentence of post #1?

Yes, I read that but it has no trace on my board (as far as I can tell) so it should not be connected to ground.
Do I do anything wrong there? A picture of my board is in the attachment.

Bastian2001:
Yes, I read that but it has no trace on my board (as far as I can tell) so it should not be connected to ground.

If you're getting 10sps it must be grounded. Trace is under the chip. If you don't believe, get your dmm out...

DaveEvans:
Trace is under the chip.

Thanks a lot, that was the tip I needed. Now after lifting the pin up and away from the trace underneath it works.