The LoadCell Project
So I just finished my first draft code for the Load cell with Arduino and decided to share it. Feel free to make any modifications on it or create your own. Also, I decided to use the LCD module instead of the MCUFriend as i didn't want a lot of functionality in it. This is the code i used. It's pretty simple. /* * Chemwen0 * By Doreen Chemweno * Load Cell HX711 Module Interface with Arduino to measure weight in Kgs Arduino pin 5 -> HX711 CLK 6 -> DOUT 5V -> VCC GND -> GND Almost any pin on the Arduino Uno will be compatible with DOUT/CLK. The HX711 board can be powered from 2.7V to 5V so the Arduino 5V power should be fine. */ #include "HX711.h" //You must have this library in your arduino library folder #include <LiquidCrystal_I2C.h> #define DOUT 6 #define CLK 5 LiquidCrystal_I2C lcd(0x3F,18,2); //important for display to work. Set the LCD Add...