Arduino-based cheap precision weighing scale for readout via serial communication.
Precision weighing scales that include serial port communication usually come at considerable cost. This project showcases an affordable alternative. Using readily available electronics parts, the scale's measurements can be read via serial communication by a simple Python class.
Note: The design could easily be extended with an Arduino display to show the measurements.
- Arduino Uno (including USB-A to USB-B cable)
- Load cell amplifier HX711 (Sparkfun), e.g. from mouser.co.uk: 474-SEN-13879
- Load cell (100g and 500g cells used), e.g. from mouser.co.uk: 474-SEN-14727 or 474-SEN-14728
- Jumper wires, pin headers, nylon spacers for electronics
- Acrylic or other material of choice for case and load cell mount
- HX711 arduino library from olkal/HX711_ADC
- Load .ino onto Arduino (via Arduino IDE or commandline like
arduino --board arduino:avr:uno --port /dev/ttyACM0 --upload serial_scale.ino
) - Assemble electronics, e.g. as described in this HX711 wiring tutorial
- Print 3D components from drawings (Drawings named
model
are only for design, no need to print these) - Move electronics into case
- Calibrate scale via Arduino IDE serial monitor commands. See below for communication protocol for calibration.
- Connect scale via USB to machine that is going to read the measurements from the scale
- Interact via python
SerialScale
object:
import numpy as np
import time
from serial_weighing_scale import SerialWeighingScale
serial_port = "/dev/ttyACM0" # for Unix systems. "COM1" on Windows systems
scale = SerialWeighingScale(port=serial_port)
while not scale.scale_is_ready():
time.sleep(.1)
# Perform standard operations
scale.tare_scale() # Tare scale
scale.read_weight() # Take single measurement
scale.read_weight_repeated(n_readings=5) # Get n readings
scale.read_weight_reliable(n_readings=5, measure=np.mean) # Get statistic of n readings
import time
from serial_weighing_scale import connect_serial_scale
scale = connect_serial_scale(test_ports=["/dev/ttyACM0", "/dev/ttyACM1"])
while not scale.scale_is_ready():
time.sleep(.1)
import time
from serial_weighing_scale import connect_serial_scale
scale = connect_serial_scale(test_ports=["/dev/ttyACM0", "/dev/ttyACM1"])
while not scale.scale_is_ready():
time.sleep(.1)
known_mass = 45.05 # weight [gram] of object used for claibration
scale.calibrate(known_mass=known_mass)
- Tare scale: send "t" -> Tare scale & Arduino confirms with "t"
- Read scale: send "w" -> Arduino returns latest reading
- Calibrate scale: send "c" + weight of known mass
- Arduino confirms by sending known mass value back
- Send "a" once known mass was placed on scale -> Arduino performs calibration & returns new calibration factor that needs to be added to
serial_scale.ino
- Add calibration routine to .ino & .py
- Add test curve to .py
Code & electronics by Lars Rollik. Scale 3D printing drawings by Simon Townsend (Advanced Manufacturing FabLabs, Sainsbury Wellcome Centre). Thanks to Benjamin Hahl for useful input on the design.