赞
踩
以下是使用 Thonny 和 HX711 模块控制压力传感器的代码的示例:
- from machine import Pin, ADC
- import time
- import hx711
-
- def measure_weight():
- # 定义hx711对象,DOUT为数据线,PD_SCK为时钟线
- hx = hx711.HX711(Pin(5), Pin(4))
- # 读取初始的标定数据
- hx.reset()
- hx.tare()
-
- # 读取传感器的数据
- val = hx.read()
- # 计算重量
- weight = hx
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。