All Projects → nimaltd → HX711

nimaltd / HX711

Licence: GPL-3.0 license
HX711 driver for STM32 HAL

Programming Languages

c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to HX711

gsm
gsm module library for STM32 LL
Stars: ✭ 28 (-17.65%)
Mutual labels:  stm32, hal
MPU6050
STM32 HAL library for GY-521 (MPU6050) with Kalman filter
Stars: ✭ 114 (+235.29%)
Mutual labels:  stm32, hal
STM32 HAL FREEMODBUS RTU
FreeMODBUS RTU port for STM32 HAL library
Stars: ✭ 111 (+226.47%)
Mutual labels:  stm32, hal
drone-stm32-map
STM32 peripheral mappings for Drone, an Embedded Operating System.
Stars: ✭ 16 (-52.94%)
Mutual labels:  stm32
go-hx711
Golang HX711 interface using periph.io driver
Stars: ✭ 15 (-55.88%)
Mutual labels:  hx711
akka-http-hal
HAL (Hypermedia Application Language) specification support for akka-http
Stars: ✭ 18 (-47.06%)
Mutual labels:  hal
TMcuSys
🍆 STM32平台uCos与emWin练习项目。图片、音乐、视频、游戏、IAP运行器。
Stars: ✭ 25 (-26.47%)
Mutual labels:  stm32
CureSynth Whip
Polyphonic MIDI Synthesizer for STM32F7
Stars: ✭ 45 (+32.35%)
Mutual labels:  stm32
pid-stm32f746
Embedded graphical interface for PID control
Stars: ✭ 29 (-14.71%)
Mutual labels:  stm32
Otter-Iron-PRO
USB-PD soldering station for JBC C245 handles.
Stars: ✭ 249 (+632.35%)
Mutual labels:  stm32
stm32 i2c to usb hid multitouch
i2c to usb hid multi touch with stm32
Stars: ✭ 55 (+61.76%)
Mutual labels:  stm32
Modbus-STM32-HAL-FreeRTOS
Modbus TCP and RTU, Master and Slave for STM32 using Cube HAL and FreeRTOS
Stars: ✭ 272 (+700%)
Mutual labels:  stm32
jesi
Hypermedia API Accelerator
Stars: ✭ 19 (-44.12%)
Mutual labels:  hal
HackSTLinkUpgrade
暴力升级你的 ST-Link 及 STM32CubeIDE
Stars: ✭ 70 (+105.88%)
Mutual labels:  stm32
JBC SolderingStation
JBC_SolderingStation
Stars: ✭ 63 (+85.29%)
Mutual labels:  stm32
stm32-tkg-hid-bootloader
A HID driverless bootloader and flash tool companion for the STM32F1 line
Stars: ✭ 30 (-11.76%)
Mutual labels:  stm32
stm-ILI9341-spi
STM32 ILI9341 spi
Stars: ✭ 77 (+126.47%)
Mutual labels:  stm32
bowman
A Java library for accessing a JSON+HAL REST API
Stars: ✭ 45 (+32.35%)
Mutual labels:  hal
versaloon
JTAG Versaloon firmware for the STM32 Bluepill board
Stars: ✭ 95 (+179.41%)
Mutual labels:  stm32
UPnP Generic
A simple library that implements port mappings to router using UPnP SSDP for Arduino boards, running on nRF52, SAMD21/SAMD51, STM32F/L/H/G/WB/MP1, Teensy, RP2040-based boards, WT32_ETH01, Portenta_H7, etc. besides ESP8266/ESP32, using ESP WiFi, WiFiNINA, Ethernet W5x00, ESP8266/ESP32 AT-command WiFi, Portenta_H7 Murata WiFi or Vision-shield Ethe…
Stars: ✭ 14 (-58.82%)
Mutual labels:  stm32

HX711 Library for STM32

Example

#include "hx711.h"

hx711_t loadcell;
float weight;
.
.
int main()
{
  hx711_init(&loadcell, HX711_CLK_GPIO_Port, HX711_CLK_Pin, HX711_DATA_GPIO_Port, HX711_DATA_Pin);
  hx711_coef_set(&loadcell, 354.5); // read afer calibration
  hx711_tare(&loadcell, 10);
  while (1)
  {
    HAL_Delay(500);
    weight = hx711_weight(&loadcell, 10);
  }
}

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].