Skip to content

Instantly share code, notes, and snippets.

@underdoeg
underdoeg / hx711.py
Last active March 10, 2026 06:45
Python port for RaspberryPI of the HX711 Breakout Board
import RPi.GPIO as GPIO
import time
def createBoolList(size=8):
ret = []
for i in range(8):
ret.append(False)
return ret