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

完善資料讓更多小伙伴認識你,還能領取20積分哦,立即完善>

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

【開源獲獎案例】多功能稱重器

迪文智能屏 ? 2024-04-20 08:12 ? 次閱讀

——來自迪文開發(fā)者論壇

本期為大家推送迪文開發(fā)者論壇獲獎開源案例——多功能稱重器。工程師采用4英寸COF智能屏,通過T5L OS核與HX711模塊及5kg壓力傳感器套裝進行數(shù)據(jù)交互,用戶可輕松實現(xiàn)重量、單價、總價、去皮等計價顯示功能,以及計數(shù)、重量變化曲線跟蹤和稱重器精準度矯正等功能,輕松切換不同應用場景,享受便捷高效稱重體驗。


UI開發(fā)示例

be60b46a-feaa-11ee-9118-92fbcf53809c.png

C51工程設計 稱重器實現(xiàn)計價功能的部分參考代碼如下:

//計價頁面===================#define VALUATION_UNIT_PRICE_ADDR 0x1010#define VALUATION_GRAM_ADDR 0x1000#define VALUATION_TOTAL_PRICES_ADDR 0x1020uint32_t valuation_decorticate = 0; //計價去皮重量uint32_t valuation_unit_price = 0; //單價//單價刷新void page_valuation_unit_price_refresh(){ uint8_t test_display[10] = {0}; if(valuation_unit_price < 1000) { test_display[0] = valuation_unit_price / 100 % 10 + 0x30; test_display[1] = '.'; test_display[2] = valuation_unit_price / 10 % 10 + 0x30; test_display[3] = valuation_unit_price / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_UNIT_PRICE_ADDR, test_display, 4); } else if(valuation_unit_price < 10000) { test_display[0] = valuation_unit_price / 1000 % 10 + 0x30; test_display[1] = valuation_unit_price / 100 % 10 + 0x30; test_display[2] = '.'; test_display[3] = valuation_unit_price / 10 % 10 + 0x30; test_display[4] = valuation_unit_price / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_UNIT_PRICE_ADDR, test_display, 4); } else if(valuation_unit_price < 100000) { test_display[0] = valuation_unit_price / 10000 % 10 + 0x30; test_display[1] = valuation_unit_price / 1000 % 10 + 0x30; test_display[2] = valuation_unit_price / 100 % 10 + 0x30; test_display[3] = '.'; test_display[4] = valuation_unit_price / 10 % 10 + 0x30; test_display[5] = valuation_unit_price / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_UNIT_PRICE_ADDR, test_display, 4); } else if(valuation_unit_price < 1000000) { test_display[0] = valuation_unit_price / 100000 % 10 + 0x30; test_display[1] = valuation_unit_price / 10000 % 10 + 0x30; test_display[2] = valuation_unit_price / 1000 % 10 + 0x30; test_display[3] = valuation_unit_price / 100 % 10 + 0x30; test_display[4] = '.'; test_display[5] = valuation_unit_price / 10 % 10 + 0x30; test_display[6] = valuation_unit_price / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_UNIT_PRICE_ADDR, test_display, 4); }}
//重量刷新void page_valuation_weight_refresh(){ uint8_t test_display[10] = {0x30}; uint32_t gram_display = 0; if(gram_value >= valuation_decorticate) { gram_display = gram_value - valuation_decorticate; if(gram_display < 10) { test_display[0] = gram_display / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_GRAM_ADDR, test_display, 3); } else if(gram_display < 100) { test_display[0] = gram_display / 10 % 10 + 0x30; test_display[1] = gram_display / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_GRAM_ADDR, test_display, 3); } else if(gram_display < 1000) { test_display[0] = gram_display / 100 % 10 + 0x30; test_display[1] = gram_display / 10 % 10 + 0x30; test_display[2] = gram_display / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_GRAM_ADDR, test_display, 3); } else if(gram_display < 10000) { test_display[0] = gram_display / 1000 % 10 + 0x30; test_display[1] = gram_display / 100 % 10 + 0x30; test_display[2] = gram_display / 10 % 10 + 0x30; test_display[3] = gram_display / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_GRAM_ADDR, test_display, 3); } else if(gram_display < 100000) { test_display[0] = gram_display / 10000 % 10 + 0x30; test_display[1] = gram_display / 1000 % 10 + 0x30; test_display[2] = gram_display / 100 % 10 + 0x30; test_display[3] = gram_display / 10 % 10 + 0x30; test_display[4] = gram_display / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_GRAM_ADDR, test_display, 3); } } else { dgus_show_text_value_set(VALUATION_GRAM_ADDR, test_display, 3); }}
//總價刷新void page_valuation_price_refresh(){ uint32_t price_value = 0; uint8_t test_display[10] = {0x30, '.', 0x30, 0x30}; if(gram_value >= valuation_decorticate) { price_value = (gram_value - valuation_decorticate) * valuation_unit_price * 2 / 1000; if(price_value < 1000) { test_display[0] = price_value / 100 % 10 + 0x30; test_display[1] = '.'; test_display[2] = price_value / 10 % 10 + 0x30; test_display[3] = price_value / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_TOTAL_PRICES_ADDR, test_display, 4); } else if(price_value < 10000) { test_display[0] = price_value / 1000 % 10 + 0x30; test_display[1] = price_value / 100 % 10 + 0x30; test_display[2] = '.';

test_display[3] = price_value / 10 % 10 + 0x30; test_display[4] = price_value / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_TOTAL_PRICES_ADDR, test_display, 4); } else if(price_value < 100000)

{ test_display[0] = price_value / 10000 % 10 + 0x30; test_display[1] = price_value / 1000 % 10 + 0x30; test_display[2] = price_value / 100 % 10 + 0x30; test_display[3] = '.'; test_display[4] = price_value / 10 % 10 + 0x30; test_display[5] = price_value / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_TOTAL_PRICES_ADDR, test_display, 4);

} else if(price_value < 1000000) { test_display[0] = price_value / 100000 % 10 + 0x30; test_display[1] = price_value / 10000 % 10 + 0x30; test_display[2] = price_value / 1000 % 10 + 0x30; test_display[3] = price_value / 100 % 10 + 0x30; test_display[4] = '.'; test_display[5] = price_value / 10 % 10 + 0x30; test_display[6] = price_value / 1 % 10 + 0x30; dgus_show_text_value_set(VALUATION_TOTAL_PRICES_ADDR, test_display, 4); } } else { dgus_show_text_value_set(VALUATION_TOTAL_PRICES_ADDR, test_display, 4); }}void page_valuation_decorticate(){ valuation_decorticate = gram_value; page_valuation_weight_refresh();}void page_valuation_1(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 1; page_valuation_unit_price_refresh(); }}void page_valuation_2(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 2; page_valuation_unit_price_refresh(); }}void page_valuation_3(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 3; page_valuation_unit_price_refresh(); }}void page_valuation_4(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 4; page_valuation_unit_price_refresh(); }}

void page_valuation_5(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 5; page_valuation_unit_price_refresh(); }}void page_valuation_6(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 6; page_valuation_unit_price_refresh(); }}void page_valuation_7(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 7; page_valuation_unit_price_refresh(); }}void page_valuation_8(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 8; page_valuation_unit_price_refresh(); }}void page_valuation_9(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 9; page_valuation_unit_price_refresh(); }}void page_valuation_0(){ if(valuation_unit_price < 100000) { valuation_unit_price = valuation_unit_price * 10 + 0; page_valuation_unit_price_refresh(); }}void page_valuation_back(){ valuation_unit_price = valuation_unit_price / 10; page_valuation_unit_price_refresh();}void page_valuation_clear(){ valuation_unit_price = 0; page_valuation_unit_price_refresh();}

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

    關注

    2552

    文章

    51302

    瀏覽量

    755238
  • 開源
    +關注

    關注

    3

    文章

    3381

    瀏覽量

    42604
  • 智能屏幕
    +關注

    關注

    0

    文章

    65

    瀏覽量

    3367
收藏 人收藏

    評論

    相關推薦

    安科瑞ADF400L多功能電表產(chǎn)品簡單介紹

    多功能電表
    jf_25373932
    發(fā)布于 :2024年12月03日 15:59:48

    多功能UC1834優(yōu)化線性調節(jié)效率

    電子發(fā)燒友網(wǎng)站提供《多功能UC1834優(yōu)化線性調節(jié)效率.pdf》資料免費下載
    發(fā)表于 10-24 09:51 ?0次下載
    <b class='flag-5'>多功能</b>UC1834優(yōu)化線性調節(jié)<b class='flag-5'>器</b>效率

    物聯(lián)網(wǎng)行業(yè)中的智能稱重方案介紹_稱重傳感器分析

    物聯(lián)網(wǎng)系統(tǒng)中為什么要使用稱重傳感器 ??聯(lián)網(wǎng)系統(tǒng)中使用稱重傳感器的原因主要有以下幾點: 全面感知與信息采集 基礎感知元件:傳感是物聯(lián)網(wǎng)的感覺器官,能夠感知、探測、采集和獲取目標對象各種形態(tài)的信息
    的頭像 發(fā)表于 09-24 14:30 ?423次閱讀
    物聯(lián)網(wǎng)行業(yè)中的智能<b class='flag-5'>稱重</b>方案介紹_<b class='flag-5'>稱重傳感器</b>分析

    開源獲獎案例】基于T5L智能屏的汽車抬頭顯示方案

    ——來自迪文開發(fā)者論壇本期為大家推送迪文開發(fā)者論壇獲獎開源案例——基于T5L智能屏的汽車抬頭顯示方案。該方案采用COF智能屏,通過T5LCAN接口,實時獲取汽車OBDII診斷接口的數(shù)據(jù),并將接收到的車速和轉速數(shù)據(jù)同步顯示在屏幕
    的頭像 發(fā)表于 09-24 08:03 ?341次閱讀
    【<b class='flag-5'>開源</b><b class='flag-5'>獲獎</b>案例】基于T5L智能屏的汽車抬頭顯示<b class='flag-5'>器</b>方案

    TI 降壓轉換多功能引腳及其應用的簡介

    電子發(fā)燒友網(wǎng)站提供《TI 降壓轉換多功能引腳及其應用的簡介.pdf》資料免費下載
    發(fā)表于 09-10 10:26 ?0次下載
    TI 降壓轉換<b class='flag-5'>器</b><b class='flag-5'>多功能</b>引腳及其應用的簡介

    開源獲獎案例】基于T5L智能屏的指紋識別解決方案

    ——來自迪文開發(fā)者論壇本期為大家推送迪文開發(fā)者論壇獲獎開源案例——基于T5L智能屏的指紋識別解決方案。該方案通過智能屏串口進行Modbus通訊,實現(xiàn)對指紋識別模塊的精準控制,并集成了指紋錄入與識別功能。可用于門禁管理、員工考勤、
    的頭像 發(fā)表于 07-06 08:13 ?336次閱讀
    【<b class='flag-5'>開源</b><b class='flag-5'>獲獎</b>案例】基于T5L智能屏的指紋識別解決方案

    18701997398光伏儲能用多功能電表APM系列電表如何查看電能? #安科瑞 #設置視頻

    多功能電表
    jf_14451220
    發(fā)布于 :2024年06月26日 15:41:27

    稱重傳感器的選型及注意事項

    稱重傳感器的選型及注意事項 稱重傳感器實際上是一種將質量信號轉變?yōu)榭蓽y量的電信號輸出的裝置。用傳感應先要考慮傳感所處的實際工作環(huán)境,這點對正確選用
    的頭像 發(fā)表于 06-17 18:33 ?1038次閱讀

    12芯M16插頭連接多功能

      德索工程師說道12芯M16插頭連接,作為電氣連接領域的一顆璀璨明珠,憑借其獨特的設計和卓越的性能,展現(xiàn)了其卓越的多功能性。以下是對其多功能性的詳細解析:
    的頭像 發(fā)表于 06-15 18:00 ?332次閱讀
    12芯M16插頭連接<b class='flag-5'>器</b>的<b class='flag-5'>多功能</b>性

    基于T5L芯片的多功能物聯(lián)網(wǎng)開發(fā)套件

    ——來自迪文開發(fā)者論壇本期為大家推送迪文開發(fā)者論壇獲獎開源案例——基于T5L芯片的多功能物聯(lián)網(wǎng)開發(fā)套件。工程師充分運用了T5L1芯片的豐富外設功能,集成了USB、音頻喇叭、PWM信號接
    的頭像 發(fā)表于 06-14 08:13 ?765次閱讀
    基于T5L芯片的<b class='flag-5'>多功能</b>物聯(lián)網(wǎng)開發(fā)套件

    使用多功能數(shù)顯表的步驟 使用多功能數(shù)顯表的注意事項

    多功能數(shù)顯表是一種集成了多種測量功能的電子測試儀器,它能夠測量電壓、電流、電阻、溫度、頻率等電氣參數(shù)。
    的頭像 發(fā)表于 05-09 16:36 ?2248次閱讀

    多功能數(shù)顯表的功能特點有哪些?

    多功能數(shù)顯表是一種集成了多種測量功能的數(shù)字顯示儀表,它在工業(yè)自動化、電氣測試、實驗室研究以及現(xiàn)場服務等領域有著廣泛的應用。
    的頭像 發(fā)表于 05-09 16:26 ?1175次閱讀

    什么是多功能傳感 多功能傳感功能介紹

    多功能傳感是一個集成系統(tǒng),它將射頻 (RF) 頻譜中的多種功能(包括通信、雷達、電子戰(zhàn)以及情報、監(jiān)視和偵察 (ISR))整合到一個傳感中。
    發(fā)表于 04-01 12:41 ?717次閱讀
    什么是<b class='flag-5'>多功能</b>傳感<b class='flag-5'>器</b> <b class='flag-5'>多功能</b>傳感<b class='flag-5'>器</b>的<b class='flag-5'>功能</b>介紹

    開源獲獎案例】隔空手勢識別測試系統(tǒng)

    ——來自迪文開發(fā)者論壇本期為大家推送迪文開發(fā)者論壇獲獎開源案例——隔空手勢識別測試系統(tǒng)。工程師采用7英寸COF智能屏,通過T5LOS核與PAJ7620U2手勢識別傳感進行數(shù)據(jù)交互,不需要使用任何
    的頭像 發(fā)表于 03-16 08:12 ?628次閱讀
    【<b class='flag-5'>開源</b><b class='flag-5'>獲獎</b>案例】隔空手勢識別測試系統(tǒng)

    安科瑞多功能電力儀表設置儀表脈沖常數(shù)教程

    多功能電力儀表
    jf_55193456
    發(fā)布于 :2024年02月02日 15:14:30