108. STM32CubeIDE HX711 with a Four Wire Load Cell and STM32 F103C8T6

Поделиться
HTML-код
  • Опубликовано: 20 янв 2025

Комментарии • 12

  • @LittleViewCoUk
    @LittleViewCoUk 9 месяцев назад

    I really enjoyed this and I enjoyed your presentation of the weights.

  • @streamnstreak
    @streamnstreak 9 месяцев назад

    please explain how to modify the code for six load cell with six hx711

    • @NizarMohideen
      @NizarMohideen  9 месяцев назад

      A simple way is by creating six sets of int32_t getHX711(void) and int weigh()
      Use six sets of gpio pins total 12 pins
      And call each function seperately
      int32_t getHX711_1(void)
      int weigh_1()
      int32_t getHX711_2(void)
      int weigh_2()
      int32_t getHX711_3(void)
      int weigh_3()
      int32_t getHX711_4(void)
      int weigh_4()
      int32_t getHX711_5(void)
      int weigh_5()
      int32_t getHX711_6(void)
      int weigh_6()
      Tha.

  • @dtpc_technologies
    @dtpc_technologies 4 месяца назад

    Great Video! Thanks a lot for this.

  • @20LBEeee002SRINIVASAN
    @20LBEeee002SRINIVASAN 5 месяцев назад

    after setting the tare weight i place the load on load cell i got value in negative

    • @NizarMohideen
      @NizarMohideen  5 месяцев назад

      We will also get negative weight if we put the load on the opposite side of the load cell

  • @EIrem-ql5cp
    @EIrem-ql5cp 2 месяца назад

    why we did not use library for hx711?

    • @NizarMohideen
      @NizarMohideen  2 месяца назад

      Library codes are between
      /* USER CODE BEGIN 0 */
      //----
      /* USER CODE END 0 */
      as in www.micropeta.com/video108

  • @37_raflimaulanaabdullah49
    @37_raflimaulanaabdullah49 8 месяцев назад

    My Calibration is still floating after that, I used Mavin Load Cell NA4 100kg, can you help solve my problem? thank you

  • @VinothkannanR-vu9yl
    @VinothkannanR-vu9yl 7 месяцев назад

    Good work keep up👏

  • @mehmetalpertatar1646
    @mehmetalpertatar1646 8 месяцев назад

    We connected the 10 kilogram weight sensor to the stm32 as you specified and wrote the code as you specified. However, the value we receive is always the same and we cannot observe any change as we increase the weight. Additionally, when we remove the weight from the sensor, the value does not reset to 0, the old value remains constant. Can you help me?

    • @NizarMohideen
      @NizarMohideen  8 месяцев назад

      Probably, check the wiring connection
      Thanks