Search found 1 match

by sexbee
Fri Aug 11, 2017 6:16 am
Forum: ESP8266 boards
Topic: [SOLVED/WORKEDAROUND] Having problems with HX711 load cell sensor
Replies: 18
Views: 50428

Re: [SOLVED/WORKEDAROUND] Having problems with HX711 load cell sensor

#write your program: # -*- coding: utf-8 -*- """ An implementation of the HX711 board reading load cell(s). """ import utime #import ustruct as struct # pylint: disable=import-error from machine import Pin # pylint: disable=import-error from machine import freq freq(160000000) class HX711: """ Readi...