99精品伊人亚洲|最近国产中文炮友|九草在线视频支援|AV网站大全最新|美女黄片免费观看|国产精品资源视频|精彩无码视频一区|91大神在线后入|伊人终合在线播放|久草综合久久中文

0
  • 聊天消息
  • 系統(tǒng)消息
  • 評(píng)論與回復(fù)
登錄后你可以
  • 下載海量資料
  • 學(xué)習(xí)在線課程
  • 觀看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區(qū)
會(huì)員中心
創(chuàng)作中心

完善資料讓更多小伙伴認(rèn)識(shí)你,還能領(lǐng)取20積分哦,立即完善>

3天內(nèi)不再提示

如何制作張力秤

454398 ? 來(lái)源:網(wǎng)絡(luò)整理 ? 作者:佚名 ? 2019-11-09 09:57 ? 次閱讀
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

步驟1:安裝稱(chēng)重傳感器

首先,我們要安裝稱(chēng)重傳感器。您的坐騎將是唯一的,但是這里是您需要遵循的準(zhǔn)則:

1。鋼制稱(chēng)重傳感器是一塊板,中間裝有應(yīng)變片。稱(chēng)重傳感器通過(guò)感應(yīng)稱(chēng)重傳感器彎曲多少來(lái)測(cè)量力。

2。支架通過(guò)稱(chēng)重傳感器梁兩端的孔連接。托架的形狀使拉力施加在測(cè)力傳感器梁的中心。由于其形狀和固定位置,拉動(dòng)托架時(shí)稱(chēng)重傳感器梁會(huì)彎曲。

3。將括號(hào)鉤到要測(cè)量的內(nèi)容上。為此,最好使用可以自由移動(dòng)的東西(例如鏈,鉤,結(jié)實(shí)的繩子或扎帶)。您希望稱(chēng)重傳感器和托架組件能夠使其自身在稱(chēng)重方向上居中,以便測(cè)量準(zhǔn)確。

步驟2:為稱(chēng)重傳感器和HX711接線

請(qǐng)參閱接線圖,以了解如何連接稱(chēng)重傳感器,HX711和Arduino。

在所示的行李箱式稱(chēng)重傳感器上,有多個(gè)應(yīng)變儀已經(jīng)連接到惠斯通電橋。您所需要做的就是以正確的方向?qū)?dǎo)線連接到HX711板上。

步驟3:將HX711庫(kù)添加到Arduino IDE

HX711庫(kù)位于此處:https://github.com/bogde/HX711

有關(guān)如何將庫(kù)添加到Arduino IDE的說(shuō)明,請(qǐng)參見(jiàn)Arduino網(wǎng)站上的此鏈接:https://www。 arduino.cc/zh-CN/Guide/Libraries

步驟4:校準(zhǔn)并稱(chēng)重!

Sparkfun有出色的Arduino程序可以運(yùn)行規(guī)模。最新版本可以在GitHub上找到,并在下面轉(zhuǎn)載:https://github.com/sparkfun/HX711-Load-Cell-Amplifier

第一步是確定秤的校準(zhǔn)因子。為此,請(qǐng)運(yùn)行以下代碼

/*

Example using the SparkFun HX711 breakout board with a scale

By: Nathan Seidle

SparkFun Electronics

Date: November 19th, 2014

License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license)。

This is the calibration sketch. Use it to determine the calibration_factor that the main example uses. It also

outputs the zero_factor useful for projects that have a permanent mass on the scale in between power cycles.

Setup your scale and start the sketch WITHOUT a weight on the scale

Once readings are displayed place the weight on the scale

Press +/- or a/z to adjust the calibration_factor until the output readings match the known weight

Use this calibration_factor on the example sketch

This example assumes pounds (lbs)。 If you prefer kilograms, change the Serial.print(“ lbs”); line to kg. The

calibration factor will be significantly different but it will be linearly related to lbs (1 lbs = 0.453592 kg)。

Your calibration factor may be very positive or very negative. It all depends on the setup of your scale system

and the direction the sensors deflect from zero state

This example code uses bogde‘s excellent library:“https://github.com/bogde/HX711”

bogde’s library is released under a GNU GENERAL PUBLIC LICENSE

Arduino pin 2 -》 HX711 CLK

3 -》 DOUT

5V -》 VCC

GND -》 GND

Most 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”

#define DOUT 3

#define CLK 2

HX711 scale;

float calibration_factor = -7050; //-7050 worked for my 440lb max scale setup

void setup() {

Serial.begin(9600);

Serial.println(“HX711 calibration sketch”);

Serial.println(“Remove all weight from scale”);

Serial.println(“After readings begin, place known weight on scale”);

Serial.println(“Press + or a to increase calibration factor”);

Serial.println(“Press - or z to decrease calibration factor”);

scale.begin(DOUT, CLK);

scale.set_scale();

scale.tare(); //Reset the scale to 0

long zero_factor = scale.read_average(); //Get a baseline reading

Serial.print(“Zero factor: ”); //This can be used to remove the need to tare the scale. Useful in permanent scale projects.

Serial.println(zero_factor);

}

void loop() {

scale.set_scale(calibration_factor); //Adjust to this calibration factor

Serial.print(“Reading: ”);

Serial.print(scale.get_units(), 1);

Serial.print(“ lbs”); //Change this to kg and re-adjust the calibration factor if you follow SI units like a sane person

Serial.print(“ calibration_factor: ”);

Serial.print(calibration_factor);

Serial.println();

if(Serial.available())

{

char temp = Serial.read();

if(temp == ‘+’ || temp == ‘a(chǎn)’)

calibration_factor += 10;

else if(temp == ‘-’ || temp == ‘z’)

calibration_factor -= 10;

}

}

在校準(zhǔn)秤后,您可以運(yùn)行以下示例程序,然后將其用于自己的目的:

/*

Example using the SparkFun HX711 breakout board with a scale

By: Nathan Seidle

SparkFun Electronics

Date: November 19th, 2014

License: This code is public domain but you buy me a beer if you use this and we meet someday (Beerware license)。

This example demonstrates basic scale output. See the calibration sketch to get the calibration_factor for your

specific load cell setup.

This example code uses bogde‘s excellent library: “https://github.com/bogde/HX711”

bogde’s library is released under a GNU GENERAL PUBLIC LICENSE

The HX711 does one thing well: read load cells. The breakout board is compatible with any wheat-stone bridge

based load cell which should allow a user to measure everything from a few grams to tens of tons.

Arduino pin 2 -》 HX711 CLK

3 -》 DAT

5V -》 VCC

GND -》 GND

The HX711 board can be powered from 2.7V to 5V so the Arduino 5V power should be fine.

*/

#include “HX711.h”

#define calibration_factor -7050.0 //This value is obtained using the SparkFun_HX711_Calibration sketch

#define DOUT 3

#define CLK 2

HX711 scale;

void setup() {

Serial.begin(9600);

Serial.println(“HX711 scale demo”);

scale.begin(DOUT, CLK);

scale.set_scale(calibration_factor); //This value is obtained by using the SparkFun_HX711_Calibration sketch

scale.tare(); //Assuming there is no weight on the scale at start up, reset the scale to 0

Serial.println(“Readings:”);

}

void loop() {

Serial.print(“Reading: ”);

Serial.print(scale.get_units(), 1); //scale.get_units() returns a float

Serial.print(“ lbs”); //You can change this to kg but you‘ll need to refactor the calibration_factor

Serial.println();

}

責(zé)任編輯:wv

聲明:本文內(nèi)容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權(quán)轉(zhuǎn)載。文章觀點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習(xí)之用,如有內(nèi)容侵權(quán)或者其他違規(guī)問(wèn)題,請(qǐng)聯(lián)系本站處理。 舉報(bào)投訴
  • HX711
    +關(guān)注

    關(guān)注

    7

    文章

    66

    瀏覽量

    45471
  • Arduino
    +關(guān)注

    關(guān)注

    190

    文章

    6498

    瀏覽量

    192264
收藏 人收藏
加入交流群
微信小助手二維碼

掃碼添加小助手

加入工程師交流群

    評(píng)論

    相關(guān)推薦
    熱點(diǎn)推薦

    皮帶PLC數(shù)據(jù)采集遠(yuǎn)程監(jiān)控系統(tǒng)方案

    一、系統(tǒng)概述 皮帶PLC數(shù)據(jù)采集遠(yuǎn)程監(jiān)控系統(tǒng)主要針對(duì)皮帶位置分散、計(jì)量監(jiān)督管理難、稱(chēng)重?cái)?shù)據(jù)傳輸滯后、計(jì)量數(shù)據(jù)誤差大等問(wèn)題,通過(guò)集成PLC數(shù)據(jù)采集、無(wú)線通信技術(shù)、云計(jì)算和大數(shù)據(jù)分析等技術(shù),實(shí)現(xiàn)
    的頭像 發(fā)表于 03-14 14:02 ?357次閱讀
    皮帶<b class='flag-5'>秤</b>PLC數(shù)據(jù)采集遠(yuǎn)程監(jiān)控系統(tǒng)方案

    體脂語(yǔ)音芯片方案-WTV380芯片的應(yīng)用節(jié)約BOM綜合成本

    隨著健康管理意識(shí)的提升,智能體脂逐漸成為家庭健康監(jiān)測(cè)的重要工具。用戶(hù)不僅關(guān)注體重?cái)?shù)據(jù),還希望通過(guò)體脂獲取體脂率、肌肉量、基礎(chǔ)代謝率等多項(xiàng)健康指標(biāo)。同時(shí),智能體脂的交互體驗(yàn)也成為產(chǎn)品競(jìng)爭(zhēng)力
    的頭像 發(fā)表于 03-07 15:35 ?332次閱讀
    體脂<b class='flag-5'>秤</b>語(yǔ)音芯片方案-WTV380芯片的應(yīng)用節(jié)約BOM綜合成本

    張力控制變頻收卷程序方案

    張力控制變頻收卷程序方案
    發(fā)表于 12-24 14:36 ?0次下載

    基于PLC的拉絲機(jī)張力控制系統(tǒng)研究

    拉絲機(jī)張力控制的關(guān)鍵計(jì)算公式
    發(fā)表于 12-24 14:35 ?2次下載

    咖啡電子PCBA方案設(shè)計(jì)

    在當(dāng)今科技飛速發(fā)展的時(shí)代,電子在各個(gè)領(lǐng)域都發(fā)揮著重要作用。而在咖啡領(lǐng)域,一款精準(zhǔn)可靠的電子更是不可或缺。今天我們就來(lái)聊聊咖啡電子方案的功能實(shí)現(xiàn)。 一、主要性能指標(biāo) 開(kāi)機(jī)方式: 按鍵開(kāi)機(jī)、上電
    的頭像 發(fā)表于 12-11 17:04 ?463次閱讀

    鼎盛合——藍(lán)牙體脂方案設(shè)計(jì)

    在當(dāng)今社會(huì),人們對(duì)健康的關(guān)注度越來(lái)越高,對(duì)健康管理工具的需求也日益增長(zhǎng)。藍(lán)牙體脂作為一種創(chuàng)新的健康管理設(shè)備,正逐漸成為人們?nèi)粘I钪械谋貍淦贰=裉煳覀兙蛠?lái)聊聊藍(lán)牙體脂方案,從它的軟硬件方面剖析
    的頭像 發(fā)表于 12-10 16:04 ?636次閱讀

    鼎盛合:智能咖啡電子方案芯片DSH38P89

    在咖啡愛(ài)好者的世界里,每一杯咖啡都是一次獨(dú)特的體驗(yàn)。而要制作出一杯完美的咖啡,精準(zhǔn)的測(cè)量是至關(guān)重要的??Х入娮?b class='flag-5'>秤作為咖啡制作過(guò)程中的重要工具,其性能的優(yōu)劣直接影響著咖啡的品質(zhì)。在眾多的 MCU 芯片
    的頭像 發(fā)表于 11-29 14:20 ?594次閱讀

    JFG-KT01張力傳感器數(shù)據(jù)表

    旁壓結(jié)構(gòu),安裝方便精度高,穩(wěn)定性好用于鋼絲繩張力的監(jiān)控及測(cè)量
    發(fā)表于 11-19 14:53 ?0次下載

    JFG-KT02張力傳感器數(shù)據(jù)表

    滑輪結(jié)構(gòu),安裝方便精度高,穩(wěn)定性好用于鋼絲繩等張力的監(jiān)控及測(cè)量
    發(fā)表于 11-19 14:52 ?0次下載

    手提吊鉤方案ADC芯片CS1237

    在當(dāng)今的計(jì)量領(lǐng)域,手提吊鉤以其便攜性和高效性成為了眾多行業(yè)不可或缺的工具。而在手提吊鉤方案中,ADC 芯片 CS1237 發(fā)揮著至關(guān)重要的作用。它以其卓越的性能和精準(zhǔn)的測(cè)量能力,為手提吊鉤
    的頭像 發(fā)表于 11-05 15:04 ?759次閱讀

    低功耗藍(lán)牙模塊在儀表上的創(chuàng)新應(yīng)用方案

    在科技日新月異的今天,藍(lán)牙模組作為高效、穩(wěn)定的無(wú)線通信技術(shù),正逐步滲透到我們生活的方方面面,在電子領(lǐng)域,藍(lán)牙模組的引入更是開(kāi)啟了電子智能化的新篇章。在電子與儀表中應(yīng)用藍(lán)牙模組的方案主要用于實(shí)現(xiàn)
    的頭像 發(fā)表于 11-01 16:40 ?698次閱讀
    低功耗藍(lán)牙模塊在儀表<b class='flag-5'>秤</b>上的創(chuàng)新應(yīng)用方案

    張力變頻器有哪些優(yōu)點(diǎn)

    張力變頻器是一種能夠利用變頻技術(shù)調(diào)節(jié)電機(jī)轉(zhuǎn)速,從而精準(zhǔn)控制張力大小的專(zhuān)用設(shè)備。它主要應(yīng)用于需要精確控制張力以保持產(chǎn)品穩(wěn)定性和質(zhì)量的工業(yè)生產(chǎn)領(lǐng)域,如印刷、紡織、塑料加工、涂布、復(fù)合、切割等行業(yè)。通過(guò)
    的頭像 發(fā)表于 10-21 16:46 ?1020次閱讀

    電子方案主控芯片DSH3487的技術(shù)特點(diǎn)

    在電子領(lǐng)域,主控芯片的性能直接決定了電子的精度、穩(wěn)定性和功能多樣性。DSH3487 作為一款高性能的電子主控芯片,以其獨(dú)特的設(shè)計(jì)和強(qiáng)大的功能,在市場(chǎng)上脫穎而出。本文將深入探討 DSH3487
    的頭像 發(fā)表于 10-09 14:42 ?681次閱讀

    求CSU8RP1186一些關(guān)于電子開(kāi)發(fā)例程,最好是C的,跪謝

    有無(wú)CSU8RP1186一些關(guān)于電子的參考資料及源碼,最好是C的,或者其他相近芯片的電子資料,幫忙發(fā)到郵箱871030114@qq.com,非常感謝!
    發(fā)表于 08-26 14:33

    什么是張力變頻器?張力變頻器的優(yōu)點(diǎn)有哪些?

    張力變頻器(Tension Control Inverter)是一種用于張力控制的調(diào)節(jié)速度的設(shè)備。它通常與鋼鐵、電力、印刷、包裝、食品、紡織等行業(yè)的設(shè)備一起使用,可對(duì)張力進(jìn)行實(shí)時(shí)調(diào)節(jié)和控制,從而
    的頭像 發(fā)表于 07-31 08:51 ?2712次閱讀