From 3cfd0090d4e1ed93cb2c9aa78c7554b0ce96b037 Mon Sep 17 00:00:00 2001 From: Guoqs <123@jsowell.com> Date: Mon, 2 Sep 2024 19:56:14 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E7=94=B5=E5=8D=95=E8=BD=A6=E5=8D=8F?= =?UTF-8?q?=E8=AE=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../domain/ebike/serversend/EBikeMessageCmd82.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/jsowell-pile/src/main/java/com/jsowell/pile/domain/ebike/serversend/EBikeMessageCmd82.java b/jsowell-pile/src/main/java/com/jsowell/pile/domain/ebike/serversend/EBikeMessageCmd82.java index d29f6f1a2..74ff22830 100644 --- a/jsowell-pile/src/main/java/com/jsowell/pile/domain/ebike/serversend/EBikeMessageCmd82.java +++ b/jsowell-pile/src/main/java/com/jsowell/pile/domain/ebike/serversend/EBikeMessageCmd82.java @@ -158,7 +158,7 @@ public class EBikeMessageCmd82 extends AbsEBikeMessage { // 过载功率 byte[] overloadPowerBytes = BytesUtil.stringToHexBytes(overloadPower, 2); // 二维码灯 - byte[] qrCodeLightBytes = BytesUtil.stringToHexBytes(qrCodeLight, 1); + // byte[] qrCodeLightBytes = BytesUtil.stringToHexBytes(qrCodeLight, 1); // 长充模式 // byte[] longChargeModeBytes = BytesUtil.stringToHexBytes(longChargeMode, 1); // 额外浮充时间 @@ -174,10 +174,10 @@ public class EBikeMessageCmd82 extends AbsEBikeMessage { // 最大充满功率最长判断时间 // byte[] maxFullChargePowerCheckTimeBytes = BytesUtil.stringToHexBytes(maxFullChargePowerCheckTime, 1); return Bytes.concat(rateModeBytes, balanceOrValidityBytes, portNumberBytes, chargeCommandBytes, - chargeDurationOrPowerBytes, orderNumberBytes, maxChargeDurationBytes, overloadPowerBytes, qrCodeLightBytes - // ,longChargeModeBytes, extraFloatChargeTimeBytes, skipShortCircuitDetectionBytes, - // noUserPullOutCheckBytes, forceAutoStopWhenFullBytes, fullChargePowerBytes, - // maxFullChargePowerCheckTimeBytes + chargeDurationOrPowerBytes, orderNumberBytes, maxChargeDurationBytes, overloadPowerBytes + // , qrCodeLightBytes, longChargeModeBytes, extraFloatChargeTimeBytes + // , skipShortCircuitDetectionBytes, noUserPullOutCheckBytes, forceAutoStopWhenFullBytes + // , fullChargePowerBytes, maxFullChargePowerCheckTimeBytes ); } }