├── .gitattributes ├── ESP32_Dishka └── ESP32_Dishka.ino ├── ESP32_IKEA └── ESP32_IKEA.ino ├── ESP32_IKEA_Firebase ├── Connections of Load Cells to the HX711 modules.JPG ├── ESP32_IKEA_Firebase.ino ├── Wiring of Load Cells.JPG └── desktop.ini ├── HX711 ├── .gitignore ├── .travis.yml ├── HX711.cpp ├── HX711.h ├── LICENSE ├── README.md ├── examples │ ├── HX711Serial │ │ └── HX711Serial.ino │ └── HX711SerialBegin │ │ └── HX711SerialBegin.ino └── library.json ├── Node-Red Flow.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/.gitattributes -------------------------------------------------------------------------------- /ESP32_Dishka/ESP32_Dishka.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/ESP32_Dishka/ESP32_Dishka.ino -------------------------------------------------------------------------------- /ESP32_IKEA/ESP32_IKEA.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/ESP32_IKEA/ESP32_IKEA.ino -------------------------------------------------------------------------------- /ESP32_IKEA_Firebase/Connections of Load Cells to the HX711 modules.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/ESP32_IKEA_Firebase/Connections of Load Cells to the HX711 modules.JPG -------------------------------------------------------------------------------- /ESP32_IKEA_Firebase/ESP32_IKEA_Firebase.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/ESP32_IKEA_Firebase/ESP32_IKEA_Firebase.ino -------------------------------------------------------------------------------- /ESP32_IKEA_Firebase/Wiring of Load Cells.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/ESP32_IKEA_Firebase/Wiring of Load Cells.JPG -------------------------------------------------------------------------------- /ESP32_IKEA_Firebase/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/ESP32_IKEA_Firebase/desktop.ini -------------------------------------------------------------------------------- /HX711/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/.gitignore -------------------------------------------------------------------------------- /HX711/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/.travis.yml -------------------------------------------------------------------------------- /HX711/HX711.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/HX711.cpp -------------------------------------------------------------------------------- /HX711/HX711.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/HX711.h -------------------------------------------------------------------------------- /HX711/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/LICENSE -------------------------------------------------------------------------------- /HX711/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/README.md -------------------------------------------------------------------------------- /HX711/examples/HX711Serial/HX711Serial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/examples/HX711Serial/HX711Serial.ino -------------------------------------------------------------------------------- /HX711/examples/HX711SerialBegin/HX711SerialBegin.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/examples/HX711SerialBegin/HX711SerialBegin.ino -------------------------------------------------------------------------------- /HX711/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/HX711/library.json -------------------------------------------------------------------------------- /Node-Red Flow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/Node-Red Flow.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Weight-Sensors/HEAD/README.md --------------------------------------------------------------------------------