Rapberry Pi Pico W Loadcell HX711
Raspberry Pi Pico W, Raspberry Pi RP2040 mikrodenetleyici çipini temel alan bir mikrodenetleyici kartıdır.
Raspberry Pi Pico W ile Loadcell ağırlık sensörü ölçümü için devremizi oluşturalım.
MicroPython ile kodumuzu yazalım.
from machine import Pin
from hx711 import *print("start")with hx711(Pin(6), Pin(5)) as hx:hx.set_power(hx711.power.pwr_up)hx.set_gain(hx711.gain.gain_128)hx711.wait_settle(hx711.rate.rate_10)net = hx.get_value()print(net, net*2.38)
Kodlar Github a yüklenmiştir.
https://github.com/electrocoder/IOThook/tree/master/examples/gpio/raspberry-pi-pico/loadcell
Wokwi ile simulasyona buradan ulaşabilirsiniz.
https://wokwi.com/projects/392177657022396417