🔧Builder's Day
Saturday, August 8, 2026
Three terms you'll use to build a working scale today — and the engineering concepts they teach without a textbook.
Term 1: Wheatstone Bridge
ElectricalA four-resistor circuit that converts a small change in resistance into a measurable voltage difference. When all four arms are equal, output is zero — the bridge is balanced. When one or more arms change resistance (because a strain gauge is being stretched, for example), the imbalance shows up as a tiny voltage in the millivolt range.
Why it matters: Every load cell, pressure transducer, and torque sensor in a test stand at Redstone is a Wheatstone bridge underneath.
Term 2: Strain Gauge
TestA thin foil pattern bonded to a surface that changes resistance when the surface deforms. Gauge Factor (GF) is the constant of proportionality between strain and the fractional resistance change. Typical foil gauges have GF around 2.0; semiconductor gauges can have GF in the 150 range. The change is tiny — a 1,000-microstrain load on a GF=2 gauge produces a 0.2% resistance change.
Why it matters: The Wheatstone bridge exists specifically to make those microscopic resistance changes readable.
Term 3: Analog-to-Digital Conversion
TestSampling a continuous voltage at discrete time intervals and quantizing each sample into a digital number. The HX711 chip used in hobbyist scales is a 24-bit sigma-delta ADC tuned specifically for bridge sensors — it gives you about 16 useful bits of resolution after noise. Sample rate of 10 Hz or 80 Hz, configurable. Two channels.
Why it matters: Whether you're building a kitchen scale or instrumenting a rocket engine static fire, you live and die on ADC quality.
The longer read
The build (one Saturday afternoon)
Parts you need (~$25 from Sunshine Hobbies or Amazon):
- 1× HX711 24-bit ADC breakout board
- 1× 5 kg load cell (four-wire half-bridge or full-bridge)
- 1× Arduino Uno or compatible
- 1× 16×2 character LCD (or OLED if you want to feel modern)
- A handful of jumper wires and a small breadboard
Wiring (about ten minutes):
The load cell has four wires. Red is excitation positive, black is excitation negative, white and green are the signal pair. Wire them to the HX711's E+, E-, A+, A- pins respectively. The HX711's data and clock pins go to two Arduino digital pins — D2 and D3 are common. Power the HX711 from the Arduino's 5V. Wire the LCD per its data sheet.
Code (the HX711 library does most of the work):
#include "HX711.h"
HX711 scale;
void setup() {
scale.begin(D2, D3); // data, clock
scale.set_scale(420.0); // calibrate this with a known weight
scale.tare(); // zero out
}
void loop() {
float grams = scale.get_units(10); // average of 10 samples
// ...write grams to LCD
delay(200);
}
Calibration: Put a known weight (a 500g kettlebell, a 5 lb dumbbell) on
the cell and tune the set_scale() value until the readout matches the
known weight. That's it.
What you've actually built: A complete data acquisition chain from analog physical phenomenon (force) through transducer (load cell with strain gauges in Wheatstone configuration) through analog-to-digital conversion (HX711) to digital display (Arduino + LCD). Every test stand at Redstone is the same architecture — bigger sensors, more channels, faster sample rates, more sophisticated software, but the same chain.
If you have a kid old enough to follow along, this is the project that turns "Dad/Mom does mysterious work with rockets" into something they can see, touch, and measure. The first time they put their hand on the scale and watch the number change with how hard they press, the test engineering field has them.
📍 Huntsville Pulse
- •Sunshine Hobbies in Madison stocks both 50 kg and 5 kg load cells suitable for this project; the 5 kg is the sweet spot for kitchen-scale work.
- •Huntsville Amateur Radio Club's monthly meeting is the second Saturday — open to non-members. Walk-in welcome.
- •Lowe Mill open studio night this Friday — engineers welcome at the makerspace co-working tables.
- •Mountain bike weather: Blevins Gap is dry and clear through the weekend. Sunday morning rides are starting at 7 a.m. from the parking lot.
“An engineer builds a scale that reads zero when nothing is on it. He flips the table over and the scale reads -32.4 grams. He files a bug. The HX711 datasheet whispers, 'always calibrate after handling.'”