左晓为主开发手持机充值管理机
zuoxiao
2023-11-14 5a843ba11b991722f8f2af386f0e546e2769f7c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.dayu.recharge.card;
 
import com.dayu.recharge.tools.HexUtil;
 
/**
 * Copyright (C), 2023,
 * Author: zuo
 * Date: 2023-11-08 13:26
 * Description: 配置设备注册信息卡:
 * <p>
 * 为方便现场更换设备时重新注册的问题,配置设备信息卡,首先刷卡,把原设备的注册号和ID号读到卡内,
 * 同时卡状态则00修改为FF,再新设备上刷此卡时,注册号和ID号自动写到控制器内,可以直接刷卡使用
 */
public class ConfigurationPowerCard {
 
 
    public String cardType = "BD";//卡类型
    public String cardData = "A0B1C289";//标识码
 
    public String power;//功率
 
    public class Zero extends BaseCard {
        public void toByte() {
            byte[] data = new byte[16];
            data[0] = HexUtil.hexToByte(cardType);
            byte[] cardDatas = HexUtil.hexToByteArray(cardData);
            for (int i = 0; i < 4; i++) {
                data[i + 1] = cardDatas[i];
            }
            float floatPower = Float.parseFloat(power);
            int intPower = (int) Math.ceil(floatPower); // 将浮点数向上取整并转换为整数
            String hexPower = HexUtil.get10to16(intPower);
            byte bytePower = HexUtil.hexToByte(hexPower);
            data[5] = bytePower;
            data[15] = getByteSum(data);
        }
 
    }
}