一、功能简述
功能:硬件对接,托利多freshway一体机设备,支持秤一键设置。动态库提供读重、清零、去皮、打印文字、打印图片、开钱箱方法。POS支持端口打印(调用dll方法打印);POS支持动态库开钱箱
秤动态库名 pos_ad_fresh_win_dll.dll
厂家提供动态库接口文档
读重接口read_standard(char *buf),返回值0 成功;-1 欠载;-2 过载。欠载时,net_weight数据为"┏━┓ ",过载时,net_weight数据为"┗━┛ "
重量信息,数据结果
status | net_weight | FixSeparator | tare_weight |
1字节 bit0,是否稳定,1表示稳定 bit1,是否在零位,1表示零位 bit2,是否有皮重,1表示皮重 | 重量值,7字节 "01.2340" | 固定"P" | 皮重,7字节 |
秤配置,读重函数不需要传端口、波特率,所以界面上不用配置
打印配置,默认调用动态库打印,不用配置端口
钱箱配置,默认调用动态库开钱箱
应用场景:门店的托利多freshway设备,POS安装后,可下载硬件模板【M_TOLDO_FRESHWAY_PRO】,同时读重、打印、钱箱会选择到默认配置。如果秤与钱箱的连接方式不一样,需要根据实际的连接方式配置对应驱动、端口、波特率
适配机型:托利多freshway
二、流程
三、代码结构
文件 | 实现的函数方法 | 法作用 | |
---|---|---|---|
代码文件 | 实现的函数方法 | 方法作用 | |
weighthelper_freshwin.h | 托利多freshway |
1 plaintext | 初始化动态库 |
1 plaintext | 读重 | ||
1 plaintext | 清零 | ||
1 plaintext | 设置皮重 | ||
1 plaintext | 清除皮重 | ||
1 plaintext | 开钱箱 | ||
1 plaintext | 打印文本 | ||
1 plaintext | 打印图片 | ||
1 plaintext | 返回打印图片的文件类型 | ||
1 plaintext | 调用切刀 | ||
1 plaintext | 返回允许打印类型 | ||
1 plaintext | 返回秤默认配置 | ||
1 plaintext | 返回秤所需文件 | ||
动态库引用 |
1 plaintext | 秤清零 | |
1 plaintext | 预置皮重 | ||
1 plaintext | 设置皮重 | ||
1 plaintext | 清除皮重 | ||
1 plaintext | 动态库接口获取重量 | ||
1 plaintext | 打印文本 | ||
1 plaintext | 开始打印 | ||
1 plaintext | 打开钱箱 | ||
1 plaintext | 打印图片(只能打印单色位图) |
四、接口
无