【luckfox】3、计算重量差

前言

本章结合之前的hx711驱动,实现读取质量,记录时间及剩余质量并存入csv文件,计算质量差并总计。

代码

luckfox-pico\project\app\test_app\hx711\hx711_app_addtime.c

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <unistd.h>
// #include <linux/delay.h>
#include <sys/time.h>
#include <string.h>
#include <time.h>#define IIO_DEVICE "/sys/bus/iio/devices/iio:device0"
#define SENSOR_CALI_PATH_OFFSET "/root/hx711_cal_offset"
#define SENSOR_CALI_PATH_SCALE "/root/hx711_cal_scale"static int cal_offset = 8500000;    // save raw value without test itemsstatic int cal_scale = 475;         // when set phone, 1g is 475
static int cal_weight = 187;  // the weight of phone// static float weight = 0;
static int weight = 0;//--------------- hx711 value process ---------------
#define LIST_NUM_MAX 64
#define CSV_PATH "/root/hx711.csv"int v1,v2;
int flag_change;struct weight_data{int weight;time_t time;
};struct weight_data list[LIST_NUM_MAX];
int current_list_num=0;int drink_water=0;//--------------- hx711 value process ---------------// float convert_to_weight(int sensor_data) {
int convert_to_weight(int sensor_data) {int weight;// weight = (float)(sensor_data - cal_offset) / cal_scale;// printf("\nsensor_raw=%d,cal_offset=%d,cal_scale=%d\n",sensor_data,cal_offset,cal_scale);if(cal_scale != 0)weight = (sensor_data - cal_offset) / cal_scale;elseweight = 0;// printf("Sensor data: %.1f\n", weight);// printf("Sensor data: %d\n", weight);return weight;
}int get_hx711_raw(){int fd;char buf[64];ssize_t num_read;fd = open(IIO_DEVICE "/in_voltage0_raw", O_RDONLY);if (fd < 0) {perror("Failed to open iio device");return 1;}num_read = read(fd, buf, sizeof(buf) - 1);if (num_read < 0) {perror("Failed to read sensor data");close(fd);return 1;}close(fd);buf[num_read] = '\0';int sensor_data = atoi(buf);// printf("  raw sensor_data=%d\n",sensor_data);return sensor_data;
}// float get_hx711_value(){
int get_hx711_value(){int sensor_data = get_hx711_raw();weight = convert_to_weight(sensor_data);return weight;
}// save scale&offset to file 
void set_cal_value(){int fd;char tmp_char[64];fd = open(SENSOR_CALI_PATH_OFFSET, O_CREAT|O_RDWR ,0777);if (fd < 0) {perror("Failed to open cal offset.");return;}// printf("-------\ncal_offset=%d\n",cal_offset);memset(tmp_char,0,sizeof(tmp_char));sprintf(tmp_char,"%d\0",cal_offset);// printf("xxx tmp_char=[%s]\n",tmp_char);write(fd, tmp_char, sizeof(tmp_char));close(fd);fd = open(SENSOR_CALI_PATH_SCALE, O_CREAT|O_RDWR ,0777);if (fd < 0) {perror("Failed to open cal offset.");return;}// printf("cal_scale=%d\n",cal_scale);memset(tmp_char,0,sizeof(tmp_char));sprintf(tmp_char,"%d\0",cal_scale) ;// printf("xxx tmp_char=[%s]\n-------\n",tmp_char);write(fd, tmp_char, sizeof(tmp_char)-1);close(fd);
}void print_cal_value_and_raw(int sensor_raw_tmp){printf("cal&raw:\n");printf("   cal_offset=%d sensor_raw=%d\n", cal_offset, sensor_raw_tmp);printf("   test_offset\t%d\n   cal_weight\t%d\n   cal_scale\t%d\n",sensor_raw_tmp - cal_offset, cal_weight, cal_scale);printf("\n");
}void print_cal_value(){printf("hx711 calibration value\n");printf("   cal_offset\t%d\n   cal_weight\t%d\n   cal_scale\t%d\n",cal_offset, cal_weight, cal_scale);printf("\n");
}void sns_calibration(){int cal_test_num = 10;int cal_average = 0;int cal_test_tmp = 0;int cal_scale_raw = 0;// test 10 times to get offset averagefor(int i=0; i<cal_test_num; i++){cal_test_tmp = get_hx711_raw();usleep(10);cal_average = (cal_average * i + cal_test_tmp)/(i+1);}cal_offset=cal_average;usleep(20);printf("!!! Please put test items on the board whose weight same with cmd3\nWaiting input char to continue ...\n");getchar();cal_test_tmp = get_hx711_raw();cal_scale_raw = cal_test_tmp - cal_offset;cal_scale = (cal_scale_raw)/cal_weight;print_cal_value_and_raw(cal_test_tmp);set_cal_value();
}void get_cal_value(){int tmp_offset;int tmp_scale;char tmp_file_value[64];int fd;// printf("get_cal_value\n");fd = open(SENSOR_CALI_PATH_OFFSET, O_RDWR,0777);if (fd < 0) {perror("Failed to open cal offset.");return;}read(fd, tmp_file_value, sizeof(tmp_file_value) - 1);// printf("tmp_file_value=%s\n",tmp_file_value);tmp_offset = atoi(tmp_file_value);// printf("tmp_offset=%d\n",tmp_offset);close(fd);fd = open(SENSOR_CALI_PATH_SCALE, O_RDWR,0777);if (fd < 0) {perror("Failed to open cal offset.");return;}memset(tmp_file_value,0,sizeof(tmp_file_value));read(fd, tmp_file_value, sizeof(tmp_file_value) - 1);tmp_scale = atoi(tmp_file_value);// printf("tmp_offset=%d\n",tmp_scale);close(fd);cal_offset = tmp_offset;cal_scale = tmp_scale;
}#define LEN_MAX 30void save_to_csv(struct weight_data value)
{char tmp_c[LEN_MAX];char * tmp;FILE *fp = fopen(CSV_PATH, "a+");if (fp == NULL) {fprintf(stderr, "fopen() failed.\n");exit(EXIT_FAILURE);}struct tm *tm_t;tm_t = localtime(&value.time);strftime(tmp_c,LEN_MAX,"%F %T",tm_t);printf("time:%s\t",tmp_c);fprintf(fp, tmp_c);fprintf(fp, " | ");memset(tmp_c,0,LEN_MAX);sprintf(tmp_c, "%d", value.weight);printf("weight:%s\n",tmp_c);fprintf(fp, tmp_c);fprintf(fp, "\n");fclose(fp);
}int value_changed(int value1, int value2)
{if(value1 != value2){flag_change = 1;// printf("change value v1=%d  v2=%d\n",value1,value2);}else{if(flag_change == 1 && value1 != 0){// save value// printf("change value %d\n",value1);list[current_list_num].weight = value1;// printf("change value %d\n",list[current_list_num].weight);// save timetime_t tnow = time(0);// printf("当前时间为:%ld\r\n",tnow);list[current_list_num].time = tnow;if(list[current_list_num].weight < list[current_list_num-1].weight){drink_water = drink_water + list[current_list_num-1].weight - list[current_list_num].weight;printf("== drink %dmL\n",drink_water);}// save value to filesave_to_csv(list[current_list_num]);current_list_num++;flag_change = 0;}}return flag_change;
}int get_value()
{int value = 0;// get valuevalue = get_hx711_value();// save value to v1&v2v1 = v2;v2 = value;// judgevalue_changed(v1,v2);return value;
}int main(int argc, char *argv[]) {char cmd1[16];char cmd2[16];char cmd3[16];int ret;int val_tmp=0;// calibration: put the items whose weight is known. weight sends to cmd3// ./hx771_app -c 187if(argc == 3){strcpy(cmd2,argv[1]);strcpy(cmd3,argv[2]);printf("cmd2=%s cmd3=%s\n",cmd2,cmd3);if(strcmp(cmd2, "-c") == 0){printf("get cal cal_weight %s\n",cmd3);cal_weight=atoi(cmd3);        // save the weight of cal items} else {printf("hx711 no cal_weight\n");return 0;}sns_calibration();sleep(1);// test the calibration resultval_tmp = get_hx711_value();printf("sensor value: %d\n", val_tmp);return 0;}printf("-------------test-------------\n");get_cal_value();print_cal_value();int sensor_data;while(1){// val_tmp = get_hx711_value();val_tmp = get_value();// if(val_tmp != 0)//     printf("%02d: %d\n",50 - test_num,val_tmp);sleep(1);}printf("--------------------------\n");return 0;
}

编译

luckfox-pico\project\app\test_app\hx711\build.sh

export PATH=/home/youkai/0_pro/luckfox/luckfox-pico/tools/linux/toolchain/arm-rockchip830-linux-uclibcgnueabihf/bin:$PATH
source ~/.bashrc  
cd ~/0_pro/luckfox/luckfox-pico/project/app/test_app/hx711
arm-rockchip830-linux-uclibcgnueabihf-gcc hx711_app_addtime.c -o hx711_app_addtime

运行

运行bat可以进行快速测试,放在windows本地

time_get_hx711.bat

scp youkai@192.168.206.130:/home/youkai/0_pro/luckfox/luckfox-pico/project/app/test_app/hx711/hx711_app_addtime .adb push hx711_app_addtime /root/
adb shell "chmod 777 /root/hx711_app_addtime"
adb shell "./root/hx711_app_addtime"

结果

代码实现了测试重量,并计算出喝水的毫升数。
在这里插入图片描述

读取保存的时间和重量。

# cat hx711.csv
2023-11-15 19:42:55 | 68
2023-11-15 19:43:07 | 194
2023-11-15 19:43:14 | 3
2023-11-15 19:43:27 | 68
2023-11-15 19:43:38 | 10

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/178730.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

NI USRP RIO软件无线电

NI USRP RIO软件无线电 NI USRP RIO是SDR游戏规则的改变者&#xff0c;它为无线通信设计人员提供了经济实惠的SDR和前所不高的性能&#xff0c;可帮助开发下一代5G无线通信系统。“USRP RIO”是一个术语&#xff0c;用于描述包含FPGA的USRP软件定义无线电设备&#xff0c;例如…

实时level2访问与策略研发

本周四下午4点&#xff0c;天软会聚焦“实时&level2访问与策略研发”开展我们的天软高频时序数仓会议&#xff0c;本次会议的报名客户&#xff0c;可以申请试用LEVEL-2数据测试账号哦~

Spring Framework 核心容器详解:Core、Beans、Context 和 Expression Language 模块

Spring可能成为您的所有企业应用程序的一站式商店。但是&#xff0c;Spring是模块化的&#xff0c;允许您挑选适用于您的模块&#xff0c;而无需引入其他模块。下面的部分提供了Spring Framework中所有可用模块的详细信息。 Spring Framework提供了大约20个模块&#xff0c;可…

业务连续性:确保稳健运营的关键战略

在今天的快节奏商业环境中&#xff0c;保障业务连续性是企业成功的重要保障。业务连续性不仅仅是关于应对自然灾害或技术故障&#xff0c;更是一项战略&#xff0c;涉及组织的整体准备、规划和应对能力&#xff0c;以确保在各种情况下业务的稳健运营。 一、业务连续性的定义 业…

matplotlib绘图

介绍 在官网上有更多种类的图型的绘制方法 matpoltlib中文官方文档&#xff1a;例子_Matplotlib 中文网 matpoltlib英文官方文档&#xff1a;Examples — Matplotlib 3.8.1 documentation 分类 一、折线图 1、要实现的功能&#xff1a; 2、实例&#xff1a; # 导入包 from…

每天学习一点点之从 SonarQube Bug 看对线程中断异常的处理

最近在基于 SonarQube 对代码进行质量优化&#xff0c;说实话&#xff0c;之前觉得 SonarQube 这种很无聊&#xff0c;但最近静下心来看了一些扫描出来的问题后&#xff0c;发现这种工具作用还是挺大的&#xff0c;能够帮助我们找到代码中的隐藏缺陷&#xff0c;从而夯实基础。…

三菱FX3U系列—小项目

目录 一、项目描述 二、IO口分配 三、运动功能图 四、项目程序 五、总结 一、项目描述 有些工作台&#xff0c;在工作台身上安装4个行程开关SQ1~SQ4&#xff0c;其中&#xff0c;SQ1、SQ2用来自动换向&#xff0c;当工作台运动到换向位置时&#xff0c;挡铁撞击行程开关&a…

网络超时检测-11.9

应用场景 在网络通信中&#xff0c;很多操作会使得进程阻塞&#xff1a; TCP套接字中的recv/acceptUDP套接字中的recvfrom超时检测的必要性 避免进程在没有数据时无限制地阻塞实现某些特定协议要求&#xff0c;比如某些设备规定&#xff0c;发送请求数据后&#xff0c;如果多长…

阿里云99元VS腾讯云88元,双11云服务器价格战,谁胜谁负?

在2023年的双十一优惠活动中&#xff0c;阿里云推出了一系列令人惊喜的优惠活动&#xff0c;其中包括99元一年的超值云服务器。本文将带您了解这些优惠活动的具体内容&#xff0c;以及与竞争对手腾讯云的价格对比&#xff0c;助您轻松选择最适合的云服务器。 99元一年服务器优…

23000 个恶意流量代理的 IPStorm 僵尸网络被拆除

美国司法部今天宣布&#xff0c;联邦调查局取缔了名为 IPStorm 的僵尸网络代理服务的网络和基础设施。 IPStorm 使网络犯罪分子能够通过世界各地的 Windows、Linux、Mac 和 Android 设备匿名运行恶意流量。 与此案相关的俄罗斯裔摩尔多瓦籍公民谢尔盖马基宁 (Sergei Makinin)…

儿童水杯上架亚马逊美国站CPC认证办理 ,常见儿童产品CPC认证测试要求

美国CPSC从2021/03/22开始改革&#xff0c;凡是他们管辖范围内的产品&#xff0c;都会被标记审查&#xff0c;如有相关产品请提前准备好相关文件比如CPC检测报告、认证等等&#xff0c;以备目的港海关审查。 CPC认证介绍 CPC证书即儿童产品证书&#xff0c;适用于12岁以下的儿…

【ArcGIS Pro二次开发】(76):面积平差工具

之前做过一个【三调土地利用现状分类面积汇总】的工具&#xff0c;在流程中使用了面积平差的方法。 考虑了在其它场合可能也需要进行面积平差&#xff0c;因此单独提取出来作为一个工具。 平差实现的方法如下图&#xff1a; 主要的计算过程如上图所示&#xff0c;算出总面积差…